Skip to content

Commit

Permalink
ci: remove usage of ni
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemSBulgakov committed Jun 17, 2024
1 parent ad4b28c commit c2d11d2
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,20 @@ jobs:
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: 8
version: 9

- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm

- name: Install ni
run: npm i -g @antfu/ni

- name: Install dependencies
id: dependencies
run: nci
run: pnpm i --frozen-lockfile

- name: Lint
if: steps.dependencies.outcome == 'success'
run: nr lint
run: pnpm run lint

0 comments on commit c2d11d2

Please # to comment.