Skip to content

Commit

Permalink
Build integration tests during CI (and release)
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 504eebc
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 @@ -22,3 +22,4 @@ jobs:
npm ci
npm run build
npm test
npm run build:tests
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 504eebc

Please sign in to comment.