Skip to content

Commit

Permalink
chore(ci): update github actions to v4 from v3 and update node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
polygonplanet committed Apr 7, 2024
1 parent 912943a commit 9eb5c70
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [8, 9, 10, 11, 12, 13, 14, 16, 18]
node: [16, 18, 20]
name: Test
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

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

- name: Install
run: npm ci
Expand Down

0 comments on commit 9eb5c70

Please sign in to comment.