-
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.
- Loading branch information
1 parent
e97b0a2
commit e575791
Showing
4 changed files
with
2,733 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.