Add TOTP MFA #222
This file contains hidden or 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 - action' | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - next | |
| pull_request: | |
| jobs: | |
| unit-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/cancel-workflow-action@0.11.0 | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Use Node.js LTS | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '22.x' | |
| - name: Enable corepack | |
| run: corepack enable | |
| - name: Yarn install | |
| run: yarn install --immutable | |
| - name: Build | |
| run: make build | |
| - name: Lint | |
| run: make lint | |
| - name: Unit Tests | |
| run: make test-unit | |
| env: | |
| CI: true | |
| cypress-run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/cancel-workflow-action@0.11.0 | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Use Node.js LTS | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '22.x' | |
| - name: Enable corepack | |
| run: corepack enable | |
| - name: Yarn install | |
| run: yarn install --immutable | |
| - name: Prepare env | |
| run: cp -n ./packages/demo/.env.local-example ./packages/demo/.env | |
| - name: Build | |
| run: make build build-demo | |
| - uses: supabase/setup-cli@v1.4.0 | |
| with: | |
| version: 2.12.1 | |
| - name: Start Supabase local development setup | |
| run: supabase start | |
| - name: Setup database | |
| run: make db-migrate db-seed | |
| - name: Cypress run | |
| uses: cypress-io/github-action@v5.0.7 | |
| with: | |
| start: make run-prod |