update : rr7 to 7.2.0 #1
This file contains hidden or 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 and Format | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'app/**' | |
- 'workers/**' | |
- '*.json' | |
- '*.js' | |
- '*.ts' | |
- '*.tsx' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'app/**' | |
- 'workers/**' | |
- '*.json' | |
- '*.js' | |
- '*.ts' | |
- '*.tsx' | |
jobs: | |
lint-format: | |
name: ⬣ Lint and Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install | |
- name: Run lint | |
run: npm run lint | |
- name: Run format check | |
run: npm run format |