Skip to content

Commit

Permalink
debug ci
Browse files Browse the repository at this point in the history
  • Loading branch information
HuakunShen committed Jul 3, 2024
1 parent 2dec487 commit c3b5046
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/debug-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: CI Build & Test
# This will build the following packages
# - docs
# - packages/*
# - packages/extensions/*
# - apps/desktop
on:
push:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
with:
submodules: "true"
- uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.17

- name: Install Dependencies
env:
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_ANON_KEY: ${{ secrets.SUPABASE_ANON_KEY }}
SUPABASE_GRAPHQL_ENDPOINT: ${{ secrets.SUPABASE_GRAPHQL_ENDPOINT }}
run: pnpm i
- name: Build
env:
SUPABASE_GRAPHQL_ENDPOINT: ${{ secrets.SUPABASE_GRAPHQL_ENDPOINT }}
SUPABASE_ANON_KEY: ${{ secrets.SUPABASE_ANON_KEY }}
run: |
pnpm --filter @jarvis/gql build

0 comments on commit c3b5046

Please sign in to comment.