Issue #214069 feat: Add the school(parent) name to cohort(class) on cohort(class) list. Also, fix the other glitches related to attendance #10
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/CD check | |
on: | |
push: | |
branches: [ ] | |
pull_request: | |
branches: [ ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Run prettier test | |
run: yarn format:check | |
# - name: Run the tests and generate coverage report | |
# run: yarn test | |
- name: Build | |
run: yarn build |