Skip to content

Bump eslint from 8.57.0 to 9.7.0 in /docs/vercel in the site group across 1 directory #345

Bump eslint from 8.57.0 to 9.7.0 in /docs/vercel in the site group across 1 directory

Bump eslint from 8.57.0 to 9.7.0 in /docs/vercel in the site group across 1 directory #345

Workflow file for this run

name: Vercel Deployment CI
on:
push:
branches: ["main"]
paths:
- "docs/vercel/**"
pull_request:
branches: [main]
paths:
- "docs/vercel/**"
jobs:
check:
name: Check Vercel Code Quality
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs/vercel
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 16.x
cache: npm
cache-dependency-path: docs/vercel/package-lock.json
- name: Install Dependencies
run: npm ci
# NOTE Since build is automated by vercel, it's probably
# redundant to test it here, too
- name: Svelte Check
run: npm run check:svelte -- --fail-on-warnings
- name: ESLint
run: npm run check:lint
- name: Prettier
run: npm run check:prettier