fix: wait for router.push to complete before reloading (#1323) #2537
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: Build & Lint (front) | |
on: | |
push: | |
paths: | |
- front/** | |
- .github/workflows/build-and-lint-front.yml | |
jobs: | |
check-eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.15.0 | |
cache: "npm" | |
cache-dependency-path: ./front/package-lock.json | |
- working-directory: front | |
run: npm install && npm run tsc && npm run lint && npm run format:check |