fix: expose ws for eth chain from client, update docs to point to ws, update schema #56
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: Lint Client | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release/* | |
| paths: | |
| - "clients/js/**" | |
| - ".github/workflows/lint-client.yml" | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "clients/js/**" | |
| - ".github/workflows/lint-client.yml" | |
| workflow_dispatch: | |
| jobs: | |
| linter: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: clients/js | |
| steps: | |
| - name: Checkout Repository 🛎️ | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.x' | |
| - name: Install Dependencies | |
| run: yarn install | |
| - name: Build Project | |
| run: yarn build | |
| - name: Run lint | |
| run: yarn run lint |