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
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
- run:
name: Install jq
command: |
# Cypress image ships a Google Chrome apt source whose GPG key can expire
# and make `apt-get update` fail with NO_PUBKEY / exit 100 before jq installs.
rm -f /etc/apt/sources.list.d/google-chrome*.list /etc/apt/sources.list.d/*chrome*.list || true
apt-get update && apt-get install -y curl jq

# Clone secondary repo and run Playwright tests
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/notifications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Send Slack deployment notifications
continue-on-error: true
uses: arddluma/cloudflare-pages-slack-notification@v4
with:
apiToken: ${{ secrets.CF_API_TOKEN }}
Expand Down
Loading