Skip to content

Commit cafa721

Browse files
Merge pull request #14 from qavajs/support-node-18
added action on node18
2 parents eca7535 + ff86182 commit cafa721

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

.github/workflows/pull-request.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main
77

88
jobs:
9-
build:
9+
node16:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2
@@ -16,3 +16,25 @@ jobs:
1616
- run: npm ci
1717
- run: npm run build
1818
- run: npm run test:e2e
19+
- name: junit report
20+
uses: mikepenz/action-junit-report@v3
21+
if: always()
22+
with:
23+
report_paths: './test-e2e/report.xml'
24+
fail_on_failure: true
25+
node18:
26+
runs-on: ubuntu-latest
27+
steps:
28+
- uses: actions/checkout@v2
29+
- uses: actions/setup-node@v2
30+
with:
31+
node-version: 18
32+
- run: npm ci
33+
- run: npm run build
34+
- run: npm run test:e2e
35+
- name: junit report
36+
uses: mikepenz/action-junit-report@v3
37+
if: always()
38+
with:
39+
report_paths: './test-e2e/report.xml'
40+
fail_on_failure: true

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)