Skip to content
This repository was archived by the owner on Feb 9, 2023. It is now read-only.

Fix CI workflow #240

Merged
merged 7 commits into from
Dec 2, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,10 @@ jobs:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}

- name: Install latest npm
run: npm install --global npm@latest
cache: 'npm'

- name: Install dependencies
run: npm ci
Expand All @@ -54,12 +52,10 @@ jobs:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}

- name: Install latest npm
run: npm install --global npm@latest
cache: 'npm'

- name: Install dependencies
run: npm ci
Expand Down