-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1386 from raineorshine/e2e
- Loading branch information
Showing
8 changed files
with
2,833 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,15 +47,19 @@ jobs: | |
- name: Build | ||
run: npm run build | ||
|
||
- name: Run tests | ||
run: npm run test | ||
- name: E2E Tests | ||
run: npm run test:e2e | ||
if: startsWith(matrix.os, 'ubuntu') && matrix.node == env.NODE_COV | ||
|
||
- name: Unit Tests | ||
run: npm run test:unit | ||
if: (!(startsWith(matrix.os, 'ubuntu') && matrix.node == env.NODE_COV)) | ||
|
||
- name: Run tests with coverage | ||
run: npx c8 -- npm test | ||
- name: Tests with coverage | ||
run: npx c8 -- npm run test:unit | ||
if: startsWith(matrix.os, 'ubuntu') && matrix.node == env.NODE_COV | ||
|
||
- name: Run Coveralls | ||
- name: Coveralls | ||
uses: coverallsapp/[email protected] | ||
if: startsWith(matrix.os, 'ubuntu') && matrix.node == env.NODE_COV | ||
with: | ||
|
Oops, something went wrong.