Web updates for Porter issue: Remove Utah Metro Townships from SGID #352 #41
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: Pull Request (Redirects) | |
on: | |
pull_request: | |
paths: | |
- 'public/_redirects' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
permissions: | |
pull-requests: write | |
jobs: | |
validate: | |
name: Validate redirects | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Set up code | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: ⎔ Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
- name: 🏗️ Build Site | |
working-directory: ./ | |
env: | |
GOOGLE_PRIVATE_KEY: ${{ secrets.SA }} | |
NETLIFY: 1 | |
run: | | |
npm install | |
npm run build | |
- name: 📦 Install Script Dependencies | |
working-directory: ./scripts | |
run: | | |
npm install | |
- name: ✔ Validate redirects | |
uses: gh640/command-result-action@v1 | |
id: validate | |
with: | |
command: node validate-redirects.mjs | |
cwd: ./scripts | |
- name: ✍️ Updating PR Comment | |
uses: thollander/actions-comment-pull-request@v2 | |
with: | |
comment_tag: validation-results | |
message: | | |
### Redirects Validation Output | |
#### `stdout` | |
``` | |
${{ steps.validate.outputs.stdout }} | |
``` | |
#### `stderr` | |
``` | |
${{ steps.validate.outputs.stderr }} | |
``` | |
- name: 🚦 Check for errors | |
if: steps.validate.outputs.exitCode != 0 | |
run: | | |
echo "::error::Validate stderr${{ steps.validate.outputs.stderr }}" | |
exit ${{ steps.validate.outputs.exitCode }} |