Skip to content

Commit

Permalink
chore: fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gmickel committed Jul 20, 2024
1 parent af5a028 commit 12f8bc1
Showing 1 changed file with 7 additions and 16 deletions.
23 changes: 7 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand All @@ -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

0 comments on commit 12f8bc1

Please sign in to comment.