We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e060c6 commit 8aa10a0Copy full SHA for 8aa10a0
4 files changed
.github/workflows/ci.yml
@@ -10,29 +10,17 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v4
13
-
14
- uses: actions/setup-node@v4
15
with:
16
node-version: '18'
17
- cache: 'pnpm'
18
19
- - name: Install pnpm globally
20
- run: npm install -g pnpm@8
21
22
- - name: Verify pnpm version
23
- run: pnpm --version
24
+ cache: 'npm'
25
- name: Install dependencies
26
- run: pnpm install --frozen-lockfile
27
+ run: npm ci
28
- name: Run linting
29
- run: pnpm run lint
30
+ run: npm run lint
31
- name: Run type checking
32
- run: pnpm run type-check
33
+ run: npm run type-check
34
- name: Run tests
35
- run: pnpm test
36
+ run: npm test
37
- name: Run build
38
- run: pnpm run build
+ run: npm run build
0 commit comments