Skip to content

feat(router): Update beforeEnter typing #277

feat(router): Update beforeEnter typing

feat(router): Update beforeEnter typing #277

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
types: [opened, synchronize, ready_for_review]
paths-ignore:
- '**/*.md'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: run tests
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: yarn install
- run: npx playwright install --with-deps chromium
- run: CI=1 yarn test