chore(deps): update dependency viem to ^2.20.1 #29469
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: Check | |
on: | |
# ..any pull request, workflow dispatch and merge queue (covers main) | |
pull_request: | |
workflow_dispatch: | |
merge_group: | |
# Cron job to run checks @ 8:30 pm daily on the latest commit on the default branch - main | |
schedule: | |
- cron: '30 20 * * *' | |
# Cancel any in progress run of the workflow for a given PR | |
# This avoids building outdated code | |
concurrency: | |
# Fallback used github.ref_name as it is always defined | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
vulnerability: | |
name: Vulnerabilities | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/yarn-install | |
- run: ./scripts/ci_check_vulnerabilities.sh | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/yarn-install | |
- run: yarn run format:check | |
- run: yarn run lint | |
- run: yarn tsc -p .github/scripts | |
yarn-lock: | |
name: 'yarn.lock Up-to-date' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/yarn-install | |
- run: git diff --exit-code | |
licenses: | |
name: Licenses | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/yarn-install | |
- run: yarn check-licenses | |
knip-depcheck: | |
name: Dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/yarn-install | |
- run: yarn knip:depcheck | |
knip-regression: | |
name: Knip Regression | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- uses: ./.github/actions/yarn-install | |
- run: yarn ts-node ./.github/scripts/checkKnipRegression.ts | |
env: | |
# Force color output in the terminal with chalk | |
# See https://github.com/chalk/supports-color/issues/106 | |
FORCE_COLOR: 2 |