Skip to content

chore: migrate to rattail #17

chore: migrate to rattail

chore: migrate to rattail #17

Workflow file for this run

name: Lint files
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
run: corepack enable && corepack prepare [email protected] --activate
- name: Set node version to 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Run formatter
run: pnpm format
- name: Run linter
run: pnpm lint