Skip to content

Fix last eslint errors #46

Fix last eslint errors

Fix last eslint errors #46

Workflow file for this run

on:
push:
paths:
- '.github/workflows/frontend.yaml'
- 'frontend/src/**'
- 'frontend/public/**'
- 'frontend/package.json'
- 'frontend/vue.config.js'
- 'frontend/Dockerfile*'
- 'frontend/.eslintrc.js'
- 'frontend/tsconfig.json'
- 'frontend/*.sh'
defaults:
run:
working-directory: frontend
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install modules
run: npm ci
- name: Save Code Linting Report JSON
run: npx eslint --output-file ../eslint_report.json --format json .
# Continue to the next step even if this fails
continue-on-error: true
- name: Typecheck
run: npx vue-tsc --noEmit
# Continue to the next step even if this fails
continue-on-error: true
- name: Annotate Code Linting Results
uses: ataylorme/eslint-annotate-action@v2
with:
markdown-report-on-step-summary: true