Skip to content

fix:removed fix width for superadmin #305

fix:removed fix width for superadmin

fix:removed fix width for superadmin #305

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- master
jobs:
test-jest:
name: Jest
runs-on:
- ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn --cwd ./frontend/app install
- name: Tests
run: cd ./frontend/app && NODE_OPTIONS="--max_old_space_size=8192" yarn run test-jest
test-go:
name: Go
runs-on:
- ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install cover
run: go get golang.org/x/tools/cmd/cover
- name: Tests
run: go test ./... -tags mock -race -v -coverprofile=coverage.out && ./cover-check.sh coverage.out 2.7