Skip to content

Commit

Permalink
CI: update actions (#59)
Browse files Browse the repository at this point in the history
* CI: update actions

* CI: Add Node.js 22

* CI: add cache npm
  • Loading branch information
XhmikosR authored Jul 3, 2024
1 parent 7a65af8 commit 6840700
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,19 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
node: [16, 18, 20]
node: [16, 18, 20, 22]

steps:
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm

- name: Install npm dependencies
run: npm ci
Expand Down

0 comments on commit 6840700

Please sign in to comment.