Skip to content

Update to 8.0.0

Update to 8.0.0 #247

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main, dev]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/[email protected]
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'pnpm'
- name: Install Dependencies
run: pnpm i --frozen-lockfile
- name: Lint Format
run: pnpm lint:prettier
- name: Check Types
run: pnpm build --filter=./packages/* && pnpm types:check
- name: Run ESLint
run: pnpm lint