Skip to content

refactor: use highcharts instead of chart.js #32

refactor: use highcharts instead of chart.js

refactor: use highcharts instead of chart.js #32

Workflow file for this run

name: Frontend CI
on:
push:
paths:
- "frontend/**"
- "!**.md" # In the case that markdown is going to be used for documentation, don't forget to change this ;)
- ".github/workflows/frontend.yml"
pull_request:
branches:
- main
paths:
- "frontend/**"
- "!**.md"
- ".github/workflows/frontend.yml"
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- name: Setup
uses: actions/setup-node@v4
with:
node-version: 22
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- run: npm ci
- run: npm run lint
if: ${{ !cancelled() }}
- run: npm run check-format
if: ${{ !cancelled() }}