Skip to content

adds 3 FE and 3 BE tests, only 1 of each are passing #8

adds 3 FE and 3 BE tests, only 1 of each are passing

adds 3 FE and 3 BE tests, only 1 of each are passing #8

Workflow file for this run

name: Run Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
backend-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Install dependencies
run: go mod download
- name: Run Go tests
run: go test -v
frontend-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install frontend dependencies
run: |
npm ci
- name: Build and run Docker container
run: |
make frontend-test