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 3fb59fb commit 9cd6e68Copy full SHA for 9cd6e68
.github/workflows/ci.yml
@@ -1,4 +1,5 @@
1
name: CI
2
+
3
on:
4
push:
5
branches: [main]
@@ -10,20 +11,23 @@ jobs:
10
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v4
14
15
- uses: actions/setup-node@v4
16
with:
17
node-version: '18'
- cache: 'pnpm'
- - uses: pnpm/action-setup@v2
18
- with:
19
- version: 8
+ cache: 'npm'
20
- name: Install dependencies
21
- run: pnpm install --frozen-lockfile
+ run: npm ci
22
23
- name: Run linting
- run: pnpm run lint
24
+ run: npm run lint
25
26
- name: Run type checking
- run: pnpm run type-check
27
+ run: npm run type-check
28
29
- name: Run tests
- run: pnpm test
30
+ run: npm test
31
32
- name: Run build
- run: pnpm run build
33
+ run: npm run build
0 commit comments