Skip to content

build(nw-install): migrate to node:https #773

build(nw-install): migrate to node:https

build(nw-install): migrate to node:https #773

Workflow file for this run

name: v3-ci
on:
pull_request:
branches:
- v3
workflow_dispatch:
branches:
- v3
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
e2e:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3.3.0
- name: Get Node version from Node manifest
run: |
echo "NODE_VER=$(jq -r '.engines.node' package.json | sed 's/v//' )" >> $GITHUB_ENV
- name: Setup Node
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ env.NODE_VER }}
cache: "npm"
- name: Enable corepack
run: corepack enable
- name: Install dependencies
run: npm ci
- name: Prepare for test
run: npm run build
- name: Run test
run: npm test