Skip to content

Merge remote-tracking branch 'origin/SMA-45-User-should-be-able-to-ra… #175

Merge remote-tracking branch 'origin/SMA-45-User-should-be-able-to-ra…

Merge remote-tracking branch 'origin/SMA-45-User-should-be-able-to-ra… #175

Workflow file for this run

name: Build and Test React
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend/sportsmatch-app
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: latest
- name: Install dependencies
run: npm install
- name: Build frontend
run: npm run build
- name: Run test
run: npm test