Skip to content

added legacy peer deps option to overcome karma #126

added legacy peer deps option to overcome karma

added legacy peer deps option to overcome karma #126

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
branches: [$default-branch]
schedule:
- cron: '0 12 * * 0'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js 10.x
uses: actions/setup-node@v3
with:
node-version: 10.x
- name: Install
run: npm install
- name: Run lint tests
run: npm run lint
browser-tests:
name: Browser Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js 10.x
uses: actions/setup-node@v3
with:
node-version: 10.x
- name: Install
run: npm install
- name: Run browser tests
run: npm run test-browser
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [6, 8]
include:
- node-version: 10
# todo: enable coverage after figuring out why test-cov step is failing
coverage: false
- node-version: 16
legacy-peer-deps: true
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- if: ${{ matrix.legacy-peer-deps }}
name: Install with legacy peer deps
run: npm install --legacy-peer-deps
- if: ${{ !matrix.legacy-peer-deps }}
name: Install
run: npm install
- name: Compile TS
run: tsc lib/**/*.ts
- if: ${{ ! matrix.coverage }}
name: Run tests
run: npm run test-ci
- if: ${{ matrix.coverage }}
name: Run tests and upload coverage
run: npm run test-cov && npx codecov && cat ./coverage/lcov.info | npx coveralls