From 7edf287768909d5944371eee4c60908076b4be38 Mon Sep 17 00:00:00 2001 From: Dominic Elm Date: Fri, 19 Jul 2024 11:04:26 +0200 Subject: [PATCH] ci: use correct versions (#2) --- .github/workflows/ci.yaml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 01c2f792..7929d3d1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,18 +10,19 @@ jobs: test: name: Test runs-on: ubuntu-latest - strategy: - matrix: - node-version: [20.15.1] steps: - - name: Setup - uses: pnpm/action-setup@v4 - with: - version: 9.4.0 - - name: Checkout uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: '20.15.1' + + - uses: pnpm/action-setup@v4 + with: + version: 9.4.0 + run_install: false + - name: Install dependencies run: pnpm install