Skip to content

Commit

Permalink
ci: use and run tests for node 20 (#1827)
Browse files Browse the repository at this point in the history
  • Loading branch information
SethFalco committed Nov 9, 2023
1 parent 6d26482 commit 742cee1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CI
env:
FORCE_COLOR: 2
NODE: 18
NODE: 20
on:
push:
branches:
Expand Down Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE }}
cache: yarn
Expand All @@ -44,12 +44,13 @@ jobs:
fail-fast: false
matrix:
node-version:
- 20
- 18
- 16
- 14
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
Expand Down

0 comments on commit 742cee1

Please sign in to comment.