We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 046d755 commit dc572d2Copy full SHA for dc572d2
.github/workflows/lint.yml
@@ -4,16 +4,25 @@ name: Lint Check
4
on: [push, pull_request]
5
6
jobs:
7
- lint:
+ lint-and-typecheck:
8
runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@v4
11
- - uses: pnpm/action-setup@v3
12
- with:
13
- version: 8
+
14
- uses: actions/setup-node@v4
15
with:
16
- node-version: 20
+ node-version: 24.5.0
17
cache: 'pnpm'
18
- - run: pnpm install
19
- - run: pnpm lint:ci
+ - uses: pnpm/action-setup@v2
+ with:
+ version: 9 # ili tvoja verzija pnpm-a
20
21
+ - name: Install dependencies
22
+ run: pnpm install --frozen-lockfile
23
24
+ - name: Lint
25
+ run: pnpm lint:ci
26
27
+ - name: Type check
28
+ run: pnpm typecheck
0 commit comments