We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a4e77c commit fd37631Copy full SHA for fd37631
.github/workflows/pipeline.yml
@@ -14,14 +14,16 @@ jobs:
14
with:
15
node-version: ${{ matrix.node-version }}
16
registry-url: https://registry.npmjs.org
17
- - run: npm install
+ - run: npm ci
18
- run: npm run lint
19
if: ${{ matrix.node-version == 24 }}
20
- run: npm run format-check
21
+ if: ${{ matrix.node-version == 24 }}
22
- run: npm run build
23
- run: npm run build-examples
24
25
# workaround for https://github.com/jestjs/jest/issues/11438
26
+ - run: npm ls ts-jest
27
- run: npm run test-coverage -- --maxWorkers=7
28
if: ${{ matrix.node-version == 14 }}
29
env:
0 commit comments