From 3e345ade01d4cd386c94adb1c7c5ac10c3cbebbf Mon Sep 17 00:00:00 2001 From: zorzal Date: Fri, 27 Sep 2024 07:47:54 -0400 Subject: [PATCH] ci: use node-version 20.x in ci --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a56be2a9..3b2ec64a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,7 @@ concurrency: group: ${{github.workflow}}-${{github.ref}} cancel-in-progress: true + jobs: tests: name: Foundry project @@ -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 @@ -46,10 +49,6 @@ jobs: name: Run Linters runs-on: ubuntu-latest - strategy: - matrix: - node-version: [16.x] - steps: - uses: actions/checkout@v3