Skip to content

schema changed

schema changed #54

Workflow file for this run

name: Linter
on:
pull_request:
branches:
- main
- dev
push:
branches:
- dev
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install Dependencies
run: npm i -g pnpm && pnpm install --ignore-scripts
- name: Run Linting
run: pnpm run lint