Skip to content

Merge branch 'main' of github.com:DynamicaBot/Dynamica-V2 #1656

Merge branch 'main' of github.com:DynamicaBot/Dynamica-V2

Merge branch 'main' of github.com:DynamicaBot/Dynamica-V2 #1656

Workflow file for this run

on:
workflow_call:
pull_request:
branches:
- main
push:
branches:
- main
name: Lint
jobs:
typecheck:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 9
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'pnpm'
- name: Install Dependancies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint