mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 10:14:22 +08:00
48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
|
|
name: Studio Unit Tests & Build Check
|
|
|
|
on:
|
|
push:
|
|
branches: [master, studio]
|
|
paths:
|
|
- 'apps/studio/**'
|
|
- 'package-lock.json'
|
|
pull_request:
|
|
branches: [master, studio]
|
|
paths:
|
|
- 'apps/studio/**'
|
|
- 'package-lock.json'
|
|
|
|
# Cancel old builds on new commit for same workflow + branch/PR
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
check:
|
|
# Uses larger hosted runner as it significantly decreases build times
|
|
runs-on: [larger-runner-4cpu]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
sparse-checkout: |
|
|
apps/studio
|
|
packages
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: 'npm'
|
|
- name: Install deps
|
|
run: npm ci
|
|
working-directory: ./
|
|
- name: Run Tests
|
|
env:
|
|
# Default is 2 GB, increase to have less frequent OOM errors
|
|
NODE_OPTIONS: '--max_old_space_size=3072'
|
|
run: npm run test:studio
|
|
working-directory: ./
|