fixed relay user save profile error #718
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: PRCheck | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
eslint: | |
name: ESLint Job | |
runs-on: | |
- ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install modules | |
run: yarn --cwd ./frontend/app install | |
- name: Eslint | |
run: yarn --cwd ./frontend/app run lint | |
test: | |
name: Test Job | |
runs-on: | |
- ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install modules | |
run: yarn --cwd ./frontend/app install | |
- name: Tests | |
run: NODE_OPTIONS="--max_old_space_size=8192" yarn --cwd ./frontend/app run test | |
- name: Set up Golang | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19 | |
- name: Go Test | |
run: go test -v ./... | |
build: | |
name: build Job | |
runs-on: | |
- ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install modules | |
run: yarn --cwd ./frontend/app install | |
- name: Eslint | |
run: CI=false yarn --cwd ./frontend/app run build |