Skip to content

Commit

Permalink
Build integration tests during CI (and release) (#800)
Browse files Browse the repository at this point in the history
Note that this won't actually run them.

Additionally, the *unit* tests are also built, impying that we're
building them twice (once during this step, and possibly again when
running the unit tests.)
  • Loading branch information
rsgowman committed Mar 3, 2020
1 parent 0438b10 commit d83daa6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ jobs:
run: |
npm ci
npm run build
npm run build:tests
npm test
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
run: |
npm ci
npm run build
npm run build:tests
- name: Run unit tests
run: npm test
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
},
"scripts": {
"build": "gulp build",
"build:tests": "gulp compile_test",
"prepare": "npm run build",
"lint": "run-p lint:src lint:test",
"test": "run-s lint test:unit",
Expand Down

0 comments on commit d83daa6

Please sign in to comment.