授業編集時に勝手に空文字が担当教員欄に入りバリデーションエラーになるバグを修正 #1246
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: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use yarn global cache | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
env: | |
CI: true | |
- name: format | |
run: yarn format | |
env: | |
CI: true | |
- name: lint | |
run: yarn lint | |
env: | |
CI: true | |
- name: Test | |
run: yarn test --ci --coverage --maxWorkers=2 | |
env: | |
CI: true | |
- name: Build | |
run: yarn build | |
env: | |
CI: true |