Skip to content

chore: update karma* #111

chore: update karma*

chore: update karma* #111

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
Build:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build with coverage
if: runner.os == 'Linux'
env:
COVERAGE: 1
TEST_BROWSERS: ChromeHeadless
run: xvfb-run npm run test
- name: Build
if: matrix.os != 'ubuntu-latest'
env:
TEST_BROWSERS: ChromeHeadless
run: npm run test
- name: Upload Coverage
uses: codecov/codecov-action@v3
if: runner.os == 'Linux'