Skip to content

Commit

Permalink
ci: align node version
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
  • Loading branch information
crazy-max committed Nov 13, 2023
1 parent 7b1a9e4 commit cca9903
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
paths-ignore:
- '.github/*-releases.json'

env:
NODE_VERSION: "20"

jobs:
test:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -46,7 +49,7 @@ jobs:
name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 16
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
-
name: Install
Expand Down Expand Up @@ -90,7 +93,7 @@ jobs:
name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 16
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
-
name: Install
Expand Down

0 comments on commit cca9903

Please sign in to comment.