Skip to content

test

test #175

Workflow file for this run

name: Lint
on:
push:
branches-ignore:
- gh-pages
pull_request:
branches-ignore:
- gh-pages
types:
- opened
- synchronize
- reopened
permissions:
contents: read
env:
CI: true
jobs:
lint:
name: 'Lint'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint