Skip to content

feat(vue): add key and meta, and re-export createBeforeEachHandlers #313

feat(vue): add key and meta, and re-export createBeforeEachHandlers

feat(vue): add key and meta, and re-export createBeforeEachHandlers #313

Workflow file for this run

name: CI
on:
push:
branches:
- dev
pull_request:
branches:
- dev
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.12.2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: "pnpm"
check-latest: true
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test