From 333d409d913c8f7f74c6bdd6c9755ee2246da98b Mon Sep 17 00:00:00 2001 From: Daniil Samoylov Date: Wed, 8 May 2024 17:29:37 +1200 Subject: [PATCH] Update CI --- .github/workflows/ci.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1167c56..f093273 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,10 +11,14 @@ jobs: timeout-minutes: 10 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - name: yarn install - run: yarn install --frozen-lockfile + - uses: pnpm/action-setup@v4 + with: + version: 8 - - name: yarn test - run: yarn test + - name: pnpm install + run: pnpm install --frozen-lockfile + + - name: pnpm test + run: pnpm test