Skip to content

Update dependency @playwright/test to v1.51.0 (#96) #226

Update dependency @playwright/test to v1.51.0 (#96)

Update dependency @playwright/test to v1.51.0 (#96) #226

Workflow file for this run

name: test code
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb
- uses: actions/setup-node@v4
with:
node-version: 20
- name: install
run: npm i
- name: lint
run: npm run lint
- name: build
run: npm run build
- name: copy dist to test directory
run: cp -r dist tests/html/dist
- name: install playwright
run: npx playwright install
- name: test
run: npm run test