Skip to content

chore(deps-dev): bump the test-tooling group across 1 directory with 5 updates #492

chore(deps-dev): bump the test-tooling group across 1 directory with 5 updates

chore(deps-dev): bump the test-tooling group across 1 directory with 5 updates #492

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
NODE_VERSION: '22'
PNPM_VERSION: '11.1.1'
jobs:
validate:
name: Lint, format, typecheck, test, and static generate
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up pnpm
uses: pnpm/action-setup@v6
with:
version: ${{ env.PNPM_VERSION }}
run_install: false
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Prepare Nuxt types
run: pnpm exec nuxt prepare
- name: Lint
run: pnpm run lint
- name: Check formatting
run: pnpm run format:check
- name: Typecheck
run: pnpm run typecheck
- name: Test
run: pnpm run test