Files
stream-bypass/.github/workflows/lint.yml
T
bytedreamandMistral Vibe 5a86625f3f switch to pnpm
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
2026-06-22 15:24:00 +02:00

29 lines
460 B
YAML

name: lint
on:
push:
branches:
- '**'
tags-ignore:
- '*'
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint