Skip to content

tighten Supabase read access #10

tighten Supabase read access

tighten Supabase read access #10

Workflow file for this run

name: Validate App
on:
pull_request:
push:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Run app checks
run: npm run check
- name: Build app
run: npm run build