Fix clocks on border of contest end/start #449
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: Lint overlay | |
on: | |
push: | |
paths: | |
- src/frontend/overlay/** | |
- .github/** | |
pull_request: | |
paths: | |
- src/frontend/overlay/** | |
- .github/** | |
jobs: | |
lint: | |
name: Lint overlay | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
cache-dependency-path: 'src/frontend/package-lock.json' | |
- run: echo "::add-matcher::.github/problem-matchers.json" | |
- name: "Install dependencies" | |
run: npm ci | |
working-directory: "src/frontend" | |
- name: "Lint overlay" | |
working-directory: "src/frontend/overlay" | |
run: npm run lint |