File tree 1 file changed +26
-5
lines changed
1 file changed +26
-5
lines changed Original file line number Diff line number Diff line change 6
6
test :
7
7
runs-on : ubuntu-latest
8
8
strategy :
9
+ fail-fast : false
9
10
matrix :
10
11
node-version :
11
12
- 12.x
23
24
- run : npm run build
24
25
- run : npm run lint
25
26
- run : npm run test
26
- - run : npm run spec-turtle
27
- - run : npm run spec-ntriples
28
- - run : npm run spec-nquads
29
- - run : npm run spec-trig
30
27
- run : npx nyc report --reporter=text-lcov > lcov.info
31
28
- uses : coverallsapp/github-action@master
32
29
with :
35
32
parallel : true
36
33
path-to-lcov : lcov.info
37
34
35
+ spec :
36
+ runs-on : ubuntu-latest
37
+ strategy :
38
+ fail-fast : false
39
+ matrix :
40
+ node-version :
41
+ - 12.x
42
+ - 14.x
43
+ - 16.x
44
+ - 18.x
45
+ - 20.x
46
+ steps :
47
+ - name : Use Node.js ${{ matrix.node-version }}
48
+ uses : actions/setup-node@v2
49
+ with :
50
+ node-version : ${{ matrix.node-version }}
51
+ - uses : actions/checkout@v2
52
+ - run : npm ci
53
+ - run : npm run spec-turtle
54
+ - run : npm run spec-ntriples
55
+ - run : npm run spec-nquads
56
+ - run : npm run spec-trig
57
+
38
58
coveralls :
39
59
needs : test
40
60
runs-on : ubuntu-latest
64
84
65
85
gh-pages :
66
86
needs :
67
- - docs
68
87
- test
88
+ - spec
89
+ - docs
69
90
runs-on : ubuntu-latest
70
91
if : startsWith(github.ref, 'refs/tags/v')
71
92
steps :
You can’t perform that action at this time.
0 commit comments