We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e86e49 commit 92612c8Copy full SHA for 92612c8
1 file changed
.github/workflows/test.yml
@@ -16,8 +16,12 @@ jobs:
16
steps:
17
- name: Checkout code
18
uses: actions/checkout@v6
19
+ - name: Use Node.js
20
+ uses: actions/setup-node@v6
21
22
+ - run: npm install --no-fund --no-audit --ignore-scripts
23
- name: Lint JS
- run: npx --yes oxlint@latest -D perf
24
+ run: npm run lint
25
26
check-types:
27
name: Check types
@@ -27,8 +31,6 @@ jobs:
31
28
32
- name: Use Node.js
29
33
uses: actions/setup-node@v6
30
- with:
- cache: npm
34
- run: npm install --no-fund --no-audit --ignore-scripts
35
- name: Check types
36
run: npm run check
@@ -40,8 +42,6 @@ jobs:
40
42
- uses: actions/checkout@v6
41
43
44
45
46
- run: npm run build
47
- run: npm test
0 commit comments