Skip to content

Bump actions/checkout from 3 to 4 #85

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #85

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [10, 12, 14, 16]
name: Node ${{ matrix.node }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm install
- name: Install Playwright
if: matrix.node == 16
run: npx playwright install-deps
- name: Test
run: npm test
- name: Test browsers
if: matrix.node == 16
run: npm run test-browsers-local
- name: Coverage
run: npm run coverage
- name: Codecov
uses: codecov/codecov-action@v3
with:
file: coverage/lcov.info