-
Notifications
You must be signed in to change notification settings - Fork 821
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: run browser tests without circle (#3328)
* ci: run browser tests without circle * Reduce scope * Bring back other tests * Apply to webworker tests * Changelog * Use specific node version * Review comments * Downgrade node in both places
- Loading branch information
Showing
2 changed files
with
10 additions
and
15 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 |
---|---|---|
|
@@ -55,8 +55,6 @@ jobs: | |
run: npm run codecov | ||
if: ${{ matrix.node_version == '14' }} | ||
node-windows-tests: | ||
strategy: | ||
fail-fast: false | ||
runs-on: windows-latest | ||
env: | ||
NPM_CONFIG_UNSAFE_PERM: true | ||
|
@@ -96,15 +94,15 @@ jobs: | |
run: npm run test | ||
browser-tests: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: circleci/node:16-browsers | ||
env: | ||
NPM_CONFIG_UNSAFE_PERM: true | ||
steps: | ||
- name: Permission Setup | ||
run: sudo chmod -R 777 /github /__w | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: restore lerna | ||
id: cache | ||
|
@@ -126,8 +124,6 @@ jobs: | |
- name: Build 🔧 | ||
run: | | ||
npm run compile | ||
# run additional compilation variants | ||
npx lerna run compile | ||
- name: Unit tests | ||
|
@@ -136,15 +132,14 @@ jobs: | |
run: npm run codecov:browser | ||
webworker-tests: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: circleci/node:16-browsers | ||
env: | ||
NPM_CONFIG_UNSAFE_PERM: true | ||
steps: | ||
- name: Permission Setup | ||
run: sudo chmod -R 777 /github /__w | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: restore lerna | ||
id: cache | ||
|
@@ -166,8 +161,6 @@ jobs: | |
- name: Build 🔧 | ||
run: | | ||
npm run compile | ||
# run additional compilation variants | ||
npx lerna run compile | ||
- name: Unit tests | ||
|
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