chore(deps): update dependency eslint to v8 #333
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
name: Unit Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
unit-test: | |
strategy: | |
fail-fast: false | |
matrix: | |
node_version: ["8", "10", "12", "14", "16"] | |
runs-on: ubuntu-latest | |
env: | |
NPM_CONFIG_UNSAFE_PERM: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node_version }} | |
- name: restore lock files | |
uses: actions/cache@master # must use unreleased master to cache multiple paths | |
id: cache | |
with: | |
# must be done before bootstrap to not include node_modules files in the cache paths | |
path: | | |
package-lock.json | |
packages/*/package-lock.json | |
benchmark/*/package-lock.json | |
backwards-compatability/*/package-lock.json | |
metapackages/*/package-lock.json | |
packages/*/package-lock.json | |
integration-tests/*/package-lock.json | |
key: ${{ runner.os }}-unit_test-${{ matrix.node_version }}-${{ hashFiles('**/package.json') }} | |
- name: Install and Build (cache miss) 🔧 | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
npm install --ignore-scripts | |
npx lerna bootstrap --no-ci | |
npm run compile | |
- name: Install and Build (cache hit) 🔧 | |
if: steps.cache.outputs.cache-hit == 'true' | |
run: | | |
npm ci --ignore-scripts | |
npx lerna bootstrap | |
npm run compile | |
- name: Unit tests | |
run: npm run test | |
- name: Report Coverage | |
run: npm run codecov | |
if: ${{ matrix.node_version == '14' }} | |
browser-tests: | |
runs-on: ubuntu-latest | |
container: | |
image: circleci/node:14-browsers | |
env: | |
NPM_CONFIG_UNSAFE_PERM: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Permission Setup | |
run: sudo chmod -R 777 /github /__w | |
- name: restore lock files | |
uses: actions/cache@master # must use unreleased master to cache multiple paths | |
id: cache | |
with: | |
# must be done before bootstrap to not include node_modules files in the cache paths | |
path: | | |
package-lock.json | |
packages/*/package-lock.json | |
benchmark/*/package-lock.json | |
backwards-compatability/*/package-lock.json | |
metapackages/*/package-lock.json | |
packages/*/package-lock.json | |
integration-tests/*/package-lock.json | |
key: ${{ runner.os }}-unit_test-${{ matrix.container }}-${{ hashFiles('**/package.json') }} | |
- name: Install and Build (cache miss) 🔧 | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
npm install --ignore-scripts | |
npx lerna bootstrap --no-ci | |
npm run compile | |
- name: Install and Build (cache hit) 🔧 | |
if: steps.cache.outputs.cache-hit == 'true' | |
run: | | |
npm ci --ignore-scripts | |
npx lerna bootstrap | |
npm run compile | |
- name: Unit tests | |
run: npm run test:browser | |
- name: Report Coverage | |
run: npm run codecov:browser |