We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c62eb72 commit 7ab0604Copy full SHA for 7ab0604
4 files changed
.github/workflows/ci.yml
@@ -12,17 +12,13 @@ jobs:
12
- uses: actions/checkout@v4
13
- uses: actions/setup-node@v4
14
with:
15
- node-version: '18'
16
- cache: 'pnpm'
17
- check-latest: true
18
- package-manager: 'pnpm'
+ node-version: '20'
+ cache: 'npm'
19
- name: Install dependencies
20
- run: pnpm install --frozen-lockfile
+ run: npm ci
21
- name: Run linting
22
- run: pnpm run lint
+ run: npm run lint
23
- name: Run type checking
24
- run: pnpm run type-check
25
- - name: Run tests
26
- run: pnpm test
+ run: npm run type-check
27
- name: Run build
28
- run: pnpm run build
+ run: npm run build
0 commit comments