test(deno): add integration tests for deno #1240
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: CI | |
on: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '**/*.md' | |
- '.prettierrc' | |
- '**/*ignore' | |
push: | |
branches: | |
- master | |
- next | |
- rc | |
paths-ignore: | |
- 'docs/**' | |
- '**/*.md' | |
- '.prettierrc' | |
- '**/*ignore' | |
jobs: | |
test: | |
name: Test / OS ${{ matrix.os }} / Node ${{ matrix.node }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: ['20'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Run tests | |
run: | | |
npm clean-install | |
npm run test:coverage | |
- name: Upload coverage results to Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: ./test/coverage/lcov.info | |
integration: | |
name: Integration / OS ${{ matrix.os }} / Node ${{ matrix.node }} / Deno ${{ matrix.deno }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: ['20'] | |
deno: ['1.x', '2.x'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: ${{ matrix.deno }} | |
- name: Setup Supabase | |
uses: supabase/setup-cli@v1 | |
with: | |
version: latest | |
- name: Start Supabase | |
run: | | |
supabase start | |
- name: Run Node.js tests | |
if: ${{ matrix.deno == '2.x' }} | |
run: | | |
npm clean-install | |
npm run test:integration || npm run test:integration | |
npm run test:integration:browser | |
- name: Run Deno tests | |
run: | | |
cd test/deno | |
deno task test | |
- name: Stop Supabase | |
run: | | |
supabase stop |