Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): address health check yarn deps failure on daily CI run #13483

Merged
merged 3 commits into from Mar 18, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/actions/health-check/action.yml
Expand Up @@ -9,7 +9,6 @@ env:
runs:
using: "composite"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/pull-request.yml
Expand Up @@ -4,6 +4,23 @@ on:
pull_request:

jobs:
# TO REMOVE / intended for testing
health-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Load secrets from 1Password
uses: 1Password/load-secrets-action@v1.3.2
with:
export-env: true
env:
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
SENTRY_AUTH_TOKEN: op://secrets/sentry-health-monitoring/credential
SENTRY_DSN: op://secrets/sentry-health-monitoring/dsn
- name: Health Check of Unlock Protocol
uses: ./.github/actions/health-check
clemsos marked this conversation as resolved.
Show resolved Hide resolved
# check which folder changed in the repo
check-changes:
uses: ./.github/workflows/_check.yml
Expand Down