Skip to content

Commit

Permalink
fix: use yarn for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
gmguarino committed Apr 22, 2024
1 parent 0782a35 commit a90253d
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,24 @@ jobs:
- name: ⬇️ Checkout repo
uses: actions/checkout@v2

- name: 🤌 Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8

- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: "pnpm"
node-version: 18

- name: 📥 Download deps
run: pnpm install --frozen-lockfile
uses: u0reo/npm-install@fix/restore-failure
with:
useRollingCache: true

- name: 🔬 Lint
run: pnpm run lint:strict
run: yarn lint:strict

- name: 🔎 Type check
run: pnpm run typecheck
run: yarn typecheck

- name: 💅 Prettier check
run: pnpm run format:check
run: yarn format:check

- name: 🃏 Run jest
run: pnpm run test
run: yarn test

0 comments on commit a90253d

Please sign in to comment.