Skip to content

Test 1

Test 1 #1

Workflow file for this run

name: Build UI
on:
pull_request:
branches: ["build-ui"]
permissions:
contents: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
ref: ${{ github.head_ref }}
fetch-depth: 1
- id: check_label
name: Check PL labels
uses: docker://agilepathway/pull-request-label-checker:latest
with:
one_of: dependencies
repo_token: ${{ secrets.GITHUB_TOKEN }}
allow_failure: true
- name: Set up Node environment
uses: actions/[email protected]
with:
node-version: 18.x
- name: Install dependencies
run: npm ci
working-directory: ui
- name: Build and Copy
run: npm run buildCopy
working-directory: ui
- name: Commit static files if dependencies label
if: steps.check_label.outputs.label_check == 'success'
run: |
if [[ $(git status --porcelain) ]]; then
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git add .
git commit --amend --no-edit
git push --force
fi
- name: Check static files uncommitted
run: |
if [[ $(git status --porcelain) ]]; then
echo "There are uncommitted changes."
git diff
exit 1
else
echo "No uncommitted changes found."
fi