Skip to content

Commit

Permalink
node 20 for github lint workflow
Browse files Browse the repository at this point in the history
Move pnpm install after node setup
  • Loading branch information
Carbrex committed Aug 3, 2024
1 parent 3c4c0d1 commit 774dfb1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,15 @@ jobs:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
run_install: true
run_install: false
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- uses: github/codeql-action/init@v3
with:
languages: javascript
- uses: github/codeql-action/analyze@v3
- run: pnpm install
- run: pnpm run lint
- run: pnpm run check-format

0 comments on commit 774dfb1

Please sign in to comment.