Skip to content

feat: move nested browser remaps to internal node_modules #51

feat: move nested browser remaps to internal node_modules

feat: move nested browser remaps to internal node_modules #51

Workflow file for this run

name: CI
on:
pull_request:
paths-ignore: ["**.md"]
push:
branches: ["main"]
paths-ignore: ["**.md"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14.x, 16.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use node@${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Lint code
run: npm run lint
- name: Install Playwright
run: npx playwright install-deps chromium
- name: Run tests
run: npm run ci:test
- name: Report code coverage
uses: codecov/codecov-action@v2