Integrate submission page #247
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: Backend Services 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] | |
service: [assignment-service, grading-service, user-service] | |
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 backend/${{matrix.service}}/node_modules | |
rm -rf backend/${{matrix.service}}/coverage | |
- name: Install Dependencies Using yarn | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: install | |
dir: backend/${{matrix.service}} | |
- name: Run Test Suites | |
env: | |
NODE_ENV: test | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: test | |
dir: backend/${{matrix.service}} | |
- name: Run Yarn Build | |
env: | |
NODE_ENV: test | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: build | |
dir: backend/${{matrix.service}} |