Client task source of truth & xml metadata helper #719
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: Backend Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| name: test | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: "~2.6" | |
| - uses: supabase/setup-cli@v1 | |
| with: | |
| version: latest | |
| - name: Run integration tests | |
| run: bash deployment/supabase/functions/tests/run_tests.sh |