mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 23:14:28 +08:00
33 lines
674 B
YAML
33 lines
674 B
YAML
name: Studio Build
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- studio
|
|
paths:
|
|
- 'studio/**'
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [14.x]
|
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: 'npm'
|
|
- name: Install deps
|
|
run: npm i
|
|
working-directory: ./studio
|
|
- name: Run build
|
|
run: npm run build
|
|
working-directory: ./studio
|