Update CI scripts

This commit is contained in:
Charles Bochet
2023-09-16 16:33:23 -07:00
parent efc45f8663
commit 82ac84ee7c
3 changed files with 7 additions and 30 deletions

View File

@ -4,25 +4,16 @@ on:
push:
branches:
- main
pull_request_target:
pull_request:
types: [labeled]
jobs:
chromatic-deployment:
if: ${{ contains(github.event.*.labels.*.name, 'run-chromatic') }} || github.event_name == 'push' }}
if: ${{ contains(github.event.pull_request.labels.*.name, 'run-chromatic') }} || github.event_name == 'push' }}
runs-on: ubuntu-latest
env:
REACT_APP_SERVER_BASE_URL: http://127.0.0.1:3000
steps:
- uses: actions/checkout@v3
if: github.event_name == 'push'
with:
fetch-depth: 0
ref: ${{ github.head_ref || github.ref_name }}
- uses: actions/checkout@v3
if: github.event_name == 'pull_request_target'
with:
fetch-depth: 0
ref: "refs/pull/${{ github.event.number }}/merge"
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:

View File

@ -3,19 +3,12 @@ on:
push:
branches:
- main
pull_request_target:
pull_request:
jobs:
docs-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
if: github.event_name == 'push'
with:
ref: ${{ github.head_ref || github.ref_name }}
- uses: actions/checkout@v3
if: github.event_name == 'pull_request_target'
with:
ref: "refs/pull/${{ github.event.number }}/merge"
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:

View File

@ -3,7 +3,7 @@ on:
push:
branches:
- main
pull_request_target:
pull_request:
jobs:
server-test:
runs-on: ubuntu-latest
@ -24,14 +24,7 @@ jobs:
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
if: github.event_name == 'push'
with:
ref: ${{ github.head_ref || github.ref_name }}
- uses: actions/checkout@v3
if: github.event_name == 'pull_request_target'
with:
ref: "refs/pull/${{ github.event.number }}/merge"
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with: