Skip to content

[FIX] update cron img ref #1984

[FIX] update cron img ref

[FIX] update cron img ref #1984

Workflow file for this run

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