Skip to content

filter out sessions where someone isn't a player #461

filter out sessions where someone isn't a player

filter out sessions where someone isn't a player #461

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
ci:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20.x"
- name: Install dependencies
run: npm ci
## Build
- name: Build
run: npm run build
## Test
- name: Run tests
run: npm run test
- uses: supabase/setup-cli@v1
with:
version: latest
- name: Start Supabase local development setup
run: supabase start
- name: Verify generated types are checked in
run: |
supabase gen types typescript --local > src/typings/supabase.ts
if ! git diff --ignore-space-at-eol --exit-code --quiet src/typings/supabase.ts; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi