fix(deployer): pin ledger-v8 to the version midnight-js requires (#171) #335
This file contains hidden or 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: Format and Lint | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - beta | |
| jobs: | |
| checks: | |
| name: Run Checks | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@05e31511f85b41b11d1cf0ef85d0992719546e2c # v2.21.0 | |
| with: | |
| egress-policy: audit | |
| - name: Check out code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| fetch-depth: 2 # Recommended by turbo team | |
| - name: Setup Environment | |
| uses: ./.github/actions/setup | |
| - name: Format & Lint | |
| run: yarn lint:ci | |
| - name: Run type checks | |
| run: yarn types | |
| - name: Run tests | |
| run: yarn test |