Skip to content

feat(changelog): add changelog trickle down action #171

feat(changelog): add changelog trickle down action

feat(changelog): add changelog trickle down action #171

Workflow file for this run

name: PR Checks
on: [pull_request]
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install Dependencies
uses: ./.github/actions/install-deps
- name: Run Lint
run: npm run lint
require-build:
name: Require Build in PR
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install Dependencies
uses: ./.github/actions/install-deps
- name: Run Build
run: npm run build
- name: Require Build in PR
run: |
STATUS=$(git status --porcelain)
# Check if the status is not empty
if [ ! -z "$STATUS" ]; then
echo "Please build and commit your changes locally before submitting a PR."
echo "------"
echo "Uncommitted changes:"
echo "$STATUS"
exit 1
fi
require-build-workspaces:
name: Require Build in PR - Workspaces
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: install deps
run: npm install
- name: Run Build workspaces
run: npm run build:ws
- name: Require Build in PR
run: |
STATUS=$(git status --porcelain)
# Check if the status is not empty
if [ ! -z "$STATUS" ]; then
echo "Please build and commit your changes locally before submitting a PR."
echo "------"
echo "Uncommitted changes:"
echo "$STATUS"
exit 1
fi