Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ jobs:
echo "Error: Source and Target Branches are the same. Please ensure they are different."
echo "Error: Close this PR and try again."
exit 1

- name: Check for unused files, exports and dependencies
run: pnpm knip

Check-Sensitive-Files:
if: ${{ github.actor != 'dependabot[bot]' }}
name: Checks if sensitive files have been changed without authorization
Expand Down Expand Up @@ -137,10 +137,20 @@ jobs:
python3 .github-central/.github/workflows/scripts/sensitive_file_check.py --config .github/workflows/config/sensitive_files.txt --files "${ALL_CHANGED_FILES[@]}"
fi

Pre-Test-Checks-Pass:
name: All Pre-Testing Checks Pass
runs-on: ubuntu-latest
needs: [Code-Quality-Checks]
# Ignore skipped tests (Required for Dependabot)
if: ${{ !cancelled() && !failure() }}
steps:
- name: This job intentionally does nothing
run: echo "This job intentionally does nothing"

Test-Docusaurus-Deployment:
name: Test Deployment to https://developer.palisadoes.org
runs-on: ubuntu-latest
needs: [Code-Quality-Checks]
needs: [Pre-Test-Checks-Pass]
strategy:
matrix:
node-version: ['24.x']
Expand Down
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
pnpm-lock.yaml
node_modules
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
"@mdx-js/react": "^3.1.1",
"@types/react": "^19.2.7",
"clsx": "^2.0.0",
"docusaurus": "^1.14.7",
"prettier": "^3.7.4",
"prism-react-renderer": "^2.3.0",
"react": "^19.2.0",
Expand Down
Loading
Loading