Skip to content

feat: migrate to Nuxt UI Pro v3 #9

feat: migrate to Nuxt UI Pro v3

feat: migrate to Nuxt UI Pro v3 #9

Workflow file for this run

name: ci
on:
push:
branches:
- v3
pull_request:
branches:
- v3
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Typecheck
run: pnpm run typecheck