Skip to content

ci: version bump to v0.2.60 #641

ci: version bump to v0.2.60

ci: version bump to v0.2.60 #641

Workflow file for this run

name: Lint Pull Request
on:
- push
jobs:
run-linters:
name: Lint & Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout latest code from main branch
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: lint
run: npm run lint
- name: typecheck
run: npm run typecheck
- name: prettier
run: npm run prettier