feat(protocol): add solver support to enable fast bridging of erc20 tokens from L2 to L1 #8934
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: Typo Check | |
on: [pull_request] | |
jobs: | |
check-for-typos: | |
if: contains(github.event.pull_request.labels.*.name, 'option.workflow_on') || github.event.pull_request.draft == false && github.head_ref != 'release-please-*' | |
runs-on: [arc-runner-set] | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Install wget | |
run: sudo apt-get update && sudo apt-get install -y wget | |
- name: Check for typos | |
uses: crate-ci/typos@master | |
with: | |
config: ${{github.workspace}}/_typos.toml |