fix: 404, add agent category #96
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 CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- '!master' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js v18.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install pnpm v8.x | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install deps | |
run: pnpm install | |
# run: pnpm install --only=dev --ignore-scripts && pnpm add react -D --only=dev --ignore-scripts | |
- name: Lint | |
run: npm run lint |