2023-08-28 08:06:08 +00:00
|
|
|
name: Build Pull Request Contents
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: ["opened", "synchronize"]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-pull-request-contents:
|
|
|
|
name: Build Pull Request Contents
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
permissions:
|
|
|
|
pull-requests: read
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Repository to Actions
|
|
|
|
uses: actions/checkout@v3.3.0
|
|
|
|
|
|
|
|
- name: Setup Node.js 18.x
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 18.x
|
|
|
|
cache: 'yarn'
|
|
|
|
|
|
|
|
- name: Get changed files
|
|
|
|
id: changed-files
|
|
|
|
uses: tj-actions/changed-files@v38
|
|
|
|
with:
|
|
|
|
files_yaml: |
|
|
|
|
apiserver:
|
|
|
|
- apiserver/**
|
|
|
|
web:
|
2023-09-03 13:20:30 +00:00
|
|
|
- web/**
|
2023-08-28 08:06:08 +00:00
|
|
|
deploy:
|
2023-09-03 13:20:30 +00:00
|
|
|
- space/**
|
2023-08-28 08:06:08 +00:00
|
|
|
|
|
|
|
- name: Build Plane's Main App
|
|
|
|
if: steps.changed-files.outputs.web_any_changed == 'true'
|
|
|
|
run: |
|
2023-09-03 13:20:30 +00:00
|
|
|
cd web
|
2023-08-28 08:06:08 +00:00
|
|
|
yarn
|
|
|
|
yarn build
|
|
|
|
|
|
|
|
- name: Build Plane's Deploy App
|
|
|
|
if: steps.changed-files.outputs.deploy_any_changed == 'true'
|
|
|
|
run: |
|
2023-09-03 13:20:30 +00:00
|
|
|
cd space
|
2023-08-28 08:06:08 +00:00
|
|
|
yarn
|
|
|
|
yarn build
|
|
|
|
|
|
|
|
|