Skip to content

Make ESM-only and browser-compatible out of the box #11

Make ESM-only and browser-compatible out of the box

Make ESM-only and browser-compatible out of the box #11

Workflow file for this run

name: Verify changes
on: pull_request
jobs:
verify:
name: Verify changes
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Lint & Test
run: npm run test
# in case we use playwright & @web/test-runner in the future
# - name: Install chromium
# run: npx playwright install-deps chromium