Skip to content

Updates

Updates #8

Workflow file for this run

name: Build UI
on:
pull_request:
branches: ["build-ui"]
push:
branches: ["build-ui"]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
with:
ref: ${{ github.head_ref }}
- 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
with:
commit_message: "Add build files"
- 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