Different colors for actual use polygons + code comments #178
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: Frontend - CI | |
on: | |
pull_request: | |
branches: | |
- sprint-release | |
- main | |
paths: | |
- "frontend/**" | |
jobs: | |
RunChecks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ./frontend/node_modules | |
key: npm-dependencies-${{ hashFiles('./frontend/package-lock.json') }} | |
- name: Setup frontend | |
run: npm ci | |
working-directory: frontend | |
- name: Run linting checks | |
run: npm run lint | |
working-directory: frontend |