Skip to content

Commit

Permalink
ci: use node-version 20.x in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
xorsal committed Sep 27, 2024
1 parent c90a3e8 commit 3e345ad
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true


jobs:
tests:
name: Foundry project
Expand All @@ -15,7 +16,9 @@ jobs:
- name: Install node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: 20
# with:
# node-version: ${{ matrix.node-version }}
cache: "yarn"

- name: Install dependencies
Expand Down Expand Up @@ -46,10 +49,6 @@ jobs:
name: Run Linters
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x]

steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit 3e345ad

Please sign in to comment.