We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eca7535 + ff86182 commit cafa721Copy full SHA for cafa721
.github/workflows/pull-request.yml
@@ -6,7 +6,7 @@ on:
6
- main
7
8
jobs:
9
- build:
+ node16:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v2
@@ -16,3 +16,25 @@ jobs:
16
- run: npm ci
17
- run: npm run build
18
- 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
31
+ node-version: 18
32
+ - run: npm ci
33
+ - run: npm run build
34
+ - run: npm run test:e2e
35
36
37
38
39
40
package-lock.json
0 commit comments