Show non-attendee account controls when primary attendee is missing #277
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: Typecheck, lint, and build front-end | |
on: [push] | |
jobs: | |
front-end-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: npm install | |
working-directory: front-end | |
run: npm install | |
- name: Lint | |
working-directory: front-end | |
run: npx eslint . | |
front-end-typecheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: npm install | |
working-directory: front-end | |
run: npm install | |
- name: Typecheck | |
working-directory: front-end | |
run: npx tsc --noEmit | |
back-end-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: "1.36.3" | |
- name: Typecheck | |
working-directory: back-end | |
run: deno task check |