Supabase CLI

Automated testing using GitHub Actions

Run your tests when you or your team make changes.

Automated testing

You can use the Supabase CLI to run automated tests.

Testing your database

After you have created unit tests for your database, you can use the GitHub Action to run the tests.

Inside your repository, create a new file inside the .github/workflows folder called database-tests.yml. Copy this snippet inside the file, and the action will run whenever a new PR is created:


_14
name: 'database-tests'
_14
on:
_14
pull_request:
_14
_14
jobs:
_14
build:
_14
runs-on: ubuntu-latest
_14
steps:
_14
- uses: actions/checkout@v3
_14
- uses: supabase/setup-cli@v1
_14
with:
_14
version: 1.11.4
_14
- run: supabase db start
_14
- run: supabase test db

Testing your Edge Functions

After you have created unit tests for your Edge Functions, you can use the GitHub Action to run the tests.

Inside your repository, create a new file inside the .github/workflows folder called functions-tests.yml. Copy this snippet inside the file, and the action will run whenever a new PR is created:


_15
name: 'functions-tests'
_15
on:
_15
pull_request:
_15
_15
jobs:
_15
build:
_15
runs-on: ubuntu-latest
_15
steps:
_15
- uses: actions/checkout@v3
_15
- uses: supabase/setup-cli@v1
_15
with:
_15
version: 1.11.4
_15
- run: supabase start
_15
- run: supabase functions serve
_15
- run: deno test --allow-all deno-test.ts --env-file .env.local

More resources