Skip to content

Commit

Permalink
ci: add draft 2019-09 to test spec
Browse files Browse the repository at this point in the history
  • Loading branch information
sagold committed Apr 6, 2024
1 parent 159c411 commit dc0e478
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,15 @@ jobs:
run: yarn test:spec:4:ci
- name: Test spec v6
run: yarn test:spec:6:ci
- name: Test spec v7
run: yarn test:spec:7:ci
- name: Test spec 2019-09
run: yarn test:spec:2019:ci
- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: spec v6 test results
path: test-result-spec6.json
- name: Test spec v7
run: yarn test:spec:7:ci
name: spec 2019-09 test results
path: test-result-spec2019-09.json
- uses: dorny/[email protected]
with:
fail-on-error: false
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"test:spec:4:ci": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R json 'test/spec/v4/*.test.ts' > test-result-spec4.json; exit 0",
"test:spec:6:ci": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R json 'test/spec/v6/*.test.ts' > test-result-spec6.json; exit 0",
"test:spec:7:ci": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R json 'test/spec/v7/*.test.ts' > test-result-spec7.json; exit 0",
"test:spec:2019:ci": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R json 'test/spec/v2019-09/*.test.ts' > test-result-spec2019-09.json; exit 0",
"test:4": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R spec 'test/spec/v4/*.test.ts'",
"test:6": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R spec 'test/spec/v6/*.test.ts'",
"test:7": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R spec 'test/spec/v7/*.test.ts'",
Expand Down

0 comments on commit dc0e478

Please sign in to comment.