Skip to content

Commit

Permalink
Remove pa11y and update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-linaro committed Jan 10, 2024
1 parent 9a9757f commit 335ee6f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 29 deletions.
20 changes: 6 additions & 14 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ on:
pull_request_target:
branches: [ master ]

# Cancel in-progress jobs or runs for the current pull request
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true

jobs:
process-pull-request:
runs-on: self-hosted
steps:
- name: Cancel previous runs
uses: n1hility/cancel-previous-runs@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Fetch git repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
path: website
Expand Down Expand Up @@ -44,11 +44,3 @@ jobs:

- name: Check routing rules
run: /srv/github-action-scripts/test-routing-rules.sh

- name: Run Pa11y scan
uses: benc-uk/workflow-dispatch@v1
with:
workflow: CheckSite
repo: linaro-its/pa11y-ci-container
token: ${{ secrets.BUILD_REPO_TOKEN }}
inputs: '{ "uri": "${{ env.SITE_URL }}" }'
22 changes: 7 additions & 15 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ on:
branches: [ master ]
workflow_dispatch:

# Cancel in-progress jobs or runs for the current workflow
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
process-push:
runs-on: self-hosted
steps:
- name: Cancel previous runs
uses: n1hility/cancel-previous-runs@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Fetch git repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: website

Expand All @@ -25,7 +25,7 @@ jobs:
- run: env

- name: Directory push/pop
uses: linaro-its/directory-push-and-pop@v2.4
uses: linaro-its/directory-push-and-pop@v3.0
with:
cacheDirectory: /srv/site-builds
namedDirectory: ${{ env.SITE_URL }}
Expand Down Expand Up @@ -59,11 +59,3 @@ jobs:

- name: Invalidate CloudFront cache
run: /srv/github-action-scripts/invalidate-cloudfront.sh

- name: Run Pa11y scan
uses: benc-uk/workflow-dispatch@v1
with:
workflow: CheckSite
repo: linaro-its/pa11y-ci-container
token: ${{ secrets.BUILD_REPO_TOKEN }}
inputs: '{ "uri": "${{ env.SITE_URL }}" }'

0 comments on commit 335ee6f

Please sign in to comment.