Disable create a class button if current or pending course already ex… #1450
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@master | |
- name: Set up Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 10.x | |
- name: Install | |
run: | | |
yarn install | |
cd functions | |
yarn install | |
- name: Lint client | |
run: yarn lint | |
- name: Type Check | |
run: yarn tsc | |
- name: Run Tests | |
run: yarn test |