Skip to content

Update to 5.0.0

Update to 5.0.0 #171

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main, dev]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout Master
uses: actions/checkout@v4
- uses: pnpm/[email protected]
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install Dependencies
run: pnpm i
- name: Lint Format
run: pnpm lint:prettier
- name: Check Types
run: pnpm build && pnpm types:check
- name: Run ESLint
run: pnpm lint