fix: replace the reference to use for getting the override date #2432
Workflow file for this run
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: Run ESLint and build frontend | |
| on: pull_request | |
| jobs: | |
| frontend: | |
| name: Lint and build JS | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: | | |
| cd frontend && \ | |
| corepack install -g yarn && \ | |
| yarn && \ | |
| yarn lint-staged && \ | |
| yarn build |