Persmission fix #148
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Site Validation | |
on: | |
pull_request: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
env: | |
Codeql.Enabled: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Restore NPM cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: ${{ runner.os }}-node- | |
- name: Sync Package Metadata | |
run: sh scripts/syncMetadata.sh | |
- name: Rebuild and validate website | |
run: scripts/rebuild.sh | |
- name: Commit Results | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Actions" | |
git add commit.txt | |
git commit -m 'Data Updated' || echo 'No changes to commit' | |
git push origin || echo "No changes to commit" | |
- name: Check for differences | |
run: | | |
if ! git diff --quiet; then | |
echo "::error ::Detected changes when regenerating website." | |
git diff --stat | |
exit 1 | |
fi |