Skip to content

Test 2

Test 2 #2

Workflow file for this run

name: Build UI
on:
pull_request:
branches: ["build-ui-2"]
permissions:
contents: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.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/setup-node@v4.0.2
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 and push changes
if: steps.check_label.outputs.label_check == 'success'
uses: stefanzweifel/git-auto-commit-action@v5
# - 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