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 906a223 + ed1daa2 commit 18063c8Copy full SHA for 18063c8
.github/workflows/tests.yml
@@ -18,7 +18,13 @@ jobs:
18
strategy:
19
fail-fast: false
20
matrix:
21
- node-version: [12.x, 16.x, lts/*]
+ node-version: [12.x]
22
+ require-successful-testpack: [true]
23
+ include:
24
+ - node-version: 16.x
25
+ require-successful-testpack: false
26
+ - node-version: lts/*
27
28
29
steps:
30
- name: Checkout repository
@@ -39,6 +45,8 @@ jobs:
39
45
40
46
- run: npx testpack-cli --keep=@types/*,ts-jest,typescript jest.config.js tsconfig.test.json src/e2e.spec.ts
41
47
working-directory: ./packages/regex-to-strings
48
+ # Workaround for #66
49
+ continue-on-error: ${{ !matrix.require-successful-testpack }}
42
50
43
51
- name: Upload test coverage report to Codecov
44
52
uses: codecov/codecov-action@v3.1.0
0 commit comments