Skip to content

Split GitHub workflows #392

Split GitHub workflows

Split GitHub workflows #392

Workflow file for this run

name: Lint
on:
pull_request:
types:
- opened
- reopened
- synchronize
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint and check formatting
runs-on: ubuntu-latest
steps:
- name: Checkout and setup pnpm
uses: ./.github/actions/checkout-and-setup-pnpm
- name: Install Dependencies
run: pnpm install
env:
HUSKY: 0
- name: Lint
run: pnpm lint