Skip to content

ReDesign site

ReDesign site #864

Workflow file for this run

name: Linter
on:
pull_request:
branches:
- main
paths:
- 'app/**'
- 'server/api/**'
- 'types/**'
- 'pnpm-workspace.yaml'
- 'pnpm-lock.yaml'
- 'eslint.config.mjs'
- 'nuxt.config.ts'
- 'tsconfig.json'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install pnpm
uses: pnpm/action-setup@903f9c1a6ebcba6cf41d87230be49611ac97822e # v6.0.3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: pnpm install
run: pnpm install
- name: Lint
run: pnpm run vp:lint
env:
CI: true