Skip to content

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

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

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

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:
steps:

Check failure on line 16 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / v3-ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 16, Col: 5): Required property is missing: runs-on
- 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