feat(clients): use schema-serde in AWS JSON RPC clients #3313
Workflow file for this run
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: pre-commit hooks | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| run-pre-commit-hooks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: set up Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: '18' | |
| cache: 'yarn' | |
| - name: install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: run pre-commit hooks | |
| run: | | |
| yarn lint-staged | |
| yarn lint:versions | |
| yarn lint:dependencies |