Skip to content

up

up #269

Workflow file for this run

name: Lint
on: push
jobs:
oneshot:
runs-on: ubuntu-22.04
steps:
- name: Get code
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: PUPPETEER_SKIP_DOWNLOAD=true && pnpm install --frozen-lockfile
- name: Lint all
run: pnpm run -r --parallel lint