[FIX] update cron img ref #1984
Workflow file for this run
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 | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
- ready_for_review | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
name: checkout | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install Frontend Dependencies | |
run: cd frontend && npm ci | |
- name: Lint Check Frontend | |
run: cd frontend && npm run lint | |
- name: Install Backend Dependencies | |
run: cd backend && npm ci | |
- name: Lint Check Backend | |
run: cd backend && npm run lint |