We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9989f6d commit 882c098Copy full SHA for 882c098
.github/workflows/pipeline.yml
@@ -3,6 +3,21 @@ name: Pipeline
3
on: push
4
5
jobs:
6
+ check14:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: actions/setup-node@v4
11
+ with:
12
+ node-version: 14
13
+ registry-url: https://registry.npmjs.org
14
+ - run: npm install
15
+ - run: npm ls ts-jest
16
+ - run: npm run build
17
+ - run: npm run build-examples
18
+ - run: npm run test-coverage -- --maxWorkers=7
19
+ env:
20
+ CI: true
21
check:
22
runs-on: ubuntu-latest
23
strategy:
@@ -38,7 +53,7 @@ jobs:
38
53
with:
39
54
node-version: 14
40
55
registry-url: https://registry.npmjs.org
41
- - run: npm ci
56
42
57
- run: npm run build
43
58
- run: npm publish || echo "Already published"
44
59
env:
0 commit comments