Skip to content

Commit 882c098

Browse files
committed
add separate job for checking node 14
1 parent 9989f6d commit 882c098

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

.github/workflows/pipeline.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@ name: Pipeline
33
on: push
44

55
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
621
check:
722
runs-on: ubuntu-latest
823
strategy:
@@ -38,7 +53,7 @@ jobs:
3853
with:
3954
node-version: 14
4055
registry-url: https://registry.npmjs.org
41-
- run: npm ci
56+
- run: npm install
4257
- run: npm run build
4358
- run: npm publish || echo "Already published"
4459
env:

0 commit comments

Comments
 (0)