From ce625a4102858807ea881c07ca9bad26621a256a Mon Sep 17 00:00:00 2001 From: Martijn van de Rijdt Date: Thu, 2 Nov 2023 14:19:55 -0400 Subject: [PATCH] fix CI 2 --- .github/workflows/ci.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6da4c5..6ec484a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: node-version: ['18.18.0', '20.5.1'] steps: - uses: actions/checkout@v3 - - uses: 'volta-cli/action@v4' + - uses: volta-cli/action@v4 with: node-version: '${{ matrix.node-version }}' yarn-version: '1.22.19' @@ -23,10 +23,6 @@ jobs: with: path: node_modules key: ${{ matrix.node }}-${{ hashFiles('**/yarn.lock') }} - - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - registry-url: https://registry.npmjs.org/ - if: steps.cache.outputs.cache-hit != 'true' - run: npm ci - - run: npm test + run: yarn ci + - run: yarn test