Skip to content

fix(deps): update dependency @zerodev/sdk to v5.3.15 #1061

fix(deps): update dependency @zerodev/sdk to v5.3.15

fix(deps): update dependency @zerodev/sdk to v5.3.15 #1061

Workflow file for this run

name: PR Checks
concurrency:
# Support push/pr as event types with different behaviors each:
# 1. push: queue up builds
# 2. pr: only allow one run per PR
group: ${{ github.workflow }}-${{ github.event.type }}${{ github.event.pull_request.number }}
# If there is already a workflow running for the same pull request, cancel it
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_TEAM_ID }}
VERCEL_PROJECT_ID: ${{ secrets.UI_TEST_WALLET_V2_VERCEL_PROJECT_ID }}
on:
pull_request:
paths:
- "advanced/wallets/react-wallet-v2/**"
- "advanced/dapps/react-dapp-v2/**"
jobs:
code_style:
name: "Code Style"
runs-on: ubuntu-latest
strategy:
matrix:
style-command:
- lint
- prettier
project:
- dapps/react-dapp-v2
- wallets/react-wallet-v2
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup-node
uses: actions/setup-node@v3

Check failure on line 37 in .github/workflows/pr_checks.yml

View workflow run for this annotation

GitHub Actions / PR Checks

Invalid workflow file

The workflow is not valid. WalletConnect/web-examples/.github/workflows/ui_tests.yml@5a2426a39b1b51069f5a98fe767935a4fb05f3f5 (Line: 37, Col: 11): Secret RELEASE_TOKEN_V2 is required, but not provided while calling. WalletConnect/web-examples/.github/workflows/ui_tests.yml@5a2426a39b1b51069f5a98fe767935a4fb05f3f5 (Line: 37, Col: 11): Secret TFC_INFRA_TOKEN is required, but not provided while calling.
with:
node-version: 18.x
- name: install
working-directory: advanced/${{ matrix.project }}
run: yarn install --immutable --immutable-cache --check-cache
- name: check
working-directory: advanced/${{ matrix.project }}
run: yarn ${{ matrix.style-command }}
ui-test:
name: "UI Tests"
uses: ./.github/workflows/ui_tests.yml
secrets: inherit