Skip to content

feat: add preprocessors #42

feat: add preprocessors

feat: add preprocessors #42

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@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Linting & Formatting
run: npm run lint
- name: Node tests
run: npm run test:node
- name: Install chromium
run: npx playwright install --with-deps chromium
- name: Browser tests
run: npm run test:browser