Update auth admin design + add support for webhooks and openid connect providers #303
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: Test CI build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 50 | |
submodules: true | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- name: Install dev deps | |
working-directory: web | |
run: | | |
yarn | |
- name: Lint and typecheck | |
working-directory: web | |
run: | | |
yarn lint && yarn typecheck | |
- name: Run build | |
working-directory: web | |
run: | | |
yarn build |