Fix bug where submissions are showing up in wrong row #276
Workflow file for this run
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 | |
# targeting pull requests to master branch | |
on: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
tests: | |
permissions: | |
checks: write | |
pull-requests: write | |
contents: write | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [20.x] | |
steps: | |
- name: Checkout Current Branch | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{matrix.node-version}} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{matrix.node-version}} | |
- name: Clean up | |
run: | | |
rm -rf frontend/node_modules | |
rm -rf frontend/coverage | |
- name: Install Dependencies Using yarn | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: install | |
dir: frontend | |
- name: Run Test Suites | |
env: | |
NODE_ENV: test | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: test | |
dir: frontend | |
- name: Run Next Build | |
env: | |
NODE_ENV: test | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: build | |
dir: frontend |