Skip to content

Another attempt to fix CI #21

Another attempt to fix CI

Another attempt to fix CI #21

Workflow file for this run

name: Build
on:
pull_request:
jobs:
build:
name: Build branch
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
- run: npm run lint
- run: npm run build
- name: Perf Test Setup
working-directory: ./example
run: npm install && npx playwright install
- name: Perf Test Run
working-directory: ./example
run: npm run test:perf:ci