Skip to content

Merge pull request #7 from ghost-in-the-machine-llc/supabase-edge-fn #19

Merge pull request #7 from ghost-in-the-machine-llc/supabase-edge-fn

Merge pull request #7 from ghost-in-the-machine-llc/supabase-edge-fn #19

Workflow file for this run

name: SpiritWave CI
on: [push, pull_request]
env:
SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_ACCESS_TOKEN }}
SUPABASE_DB_PASSWORD: ${{ secrets.SUPABASE_DB_PASSWORD }}
PROJECT_ID: ${{ vars.SUPABASE_PROJECT_ID}}
jobs:
run-ci:
name: Lint project and deploy functions
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Use Deno v1 latest
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- run: npm ci
- run: npm run lint