ci: version bump to v0.2.60 #640
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |