Update CODEOWNERS - add wadealexc and teddyknox #5
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: PR Check Workflow | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check-PR: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout base commit | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.base_ref }} | |
- name: Generate routes | |
run: | | |
./ci-scripts/gen_routes.sh > routes_to_test.txt | |
- name: Upload routes file | |
uses: actions/upload-artifact@v2 | |
with: | |
name: routes-to-test | |
path: routes_to_test.txt | |
- name: Checkout PR's head commit | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Download routes file | |
uses: actions/download-artifact@v2 | |
with: | |
name: routes-to-test | |
- name: Run redirect tests | |
run: | | |
./ci-scripts/test_redirects.sh routes_to_test.txt |