Skip to content

chore: update to eslint9 #11

chore: update to eslint9

chore: update to eslint9 #11

Workflow file for this run

on: ["pull_request"]
name: Build and Test PR
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm 📦
- uses: actions/setup-node@v4
with:
node-version: latest
cache: pnpm
- name: Install dependencies 📦
run: pnpm install
- name: Lint 🧹
run: pnpm run lint
- name: Build 🔧
run: pnpm run build
- name: Test 🧪
run: pnpm run test:ci