refactor: use highcharts instead of chart.js #32
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: 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() }} |