Skip to content

[v-next] Split v-next into multiple packages #6446

[v-next] Split v-next into multiple packages

[v-next] Split v-next into multiple packages #6446

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches:
- "**"
paths:
- "*"
- "docs/**"
- "packages/**"
workflow_dispatch:
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v2
with:
node-version: 18
cache: "pnpm"
cache-dependency-path: |
pnpm-lock.yaml
docs/pnpm-lock.yaml
- name: Install
run: pnpm install --frozen-lockfile --prefer-offline
- name: Build
run: pnpm build
- name: lint
run: pnpm lint
- name: Check dependency versions
run: node scripts/check-dependencies.js
- name: Install website
working-directory: docs/
run: pnpm install --frozen-lockfile --prefer-offline
- name: Lint website
working-directory: docs/
run: pnpm lint