Skip to content

Merge pull request #196 from plural-reality/feat/refactor #2

Merge pull request #196 from plural-reality/feat/refactor

Merge pull request #196 from plural-reality/feat/refactor #2

Workflow file for this run

name: Test (lint + build)
on:
push:
branches: ["**"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
- name: Install dependencies
run: npm ci
- name: Run tests (lint + build)
run: npm test
env:
NEXT_PUBLIC_SUPABASE_URL: "https://example.supabase.co"
NEXT_PUBLIC_SUPABASE_ANON_KEY: "dummy-key"