Skip to content

v5 (#1097)

v5 (#1097) #13

Workflow file for this run

name: Lint
on:
pull_request:
branches: ["main"]
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: "true"
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
- name: Install
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint