From 12f8bc15e2977a474ae8e2ba38dc05fe39e74b87 Mon Sep 17 00:00:00 2001 From: Gordon Mickel Date: Sat, 20 Jul 2024 09:46:35 +0200 Subject: [PATCH] chore: fix workflow --- .github/workflows/ci.yml | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f7bbf3..6fa4696 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,14 +23,11 @@ jobs: with: node-version: lts/* - - name: Setup - run: npm i -g @gmickel/ni - - name: Install - run: nci + run: pnpm install - name: Lint - run: nr lint + run: pnpm lint typecheck: runs-on: ubuntu-latest @@ -45,14 +42,11 @@ jobs: with: node-version: lts/* - - name: Setup - run: npm i -g @gmickel/ni - - name: Install - run: nci + run: pnpm install - name: Typecheck - run: nr typecheck + run: pnpm typecheck test: runs-on: ${{ matrix.os }} @@ -74,14 +68,11 @@ jobs: with: node-version: ${{ matrix.node }} - - name: Setup - run: npm i -g @gmickel/ni - - name: Install - run: nci + run: pnpm install - name: Build - run: nr build + run: pnpm build - name: Test - run: nr test + run: pnpm test