feat(networks): add naga-proto naga naga-prod environment and contrac… #2932
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 | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - naga | |
| - canary-naga | |
| jobs: | |
| linter: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.18.0 | |
| registry-url: https://registry.npmjs.org | |
| - name: Enable corepack + pin pnpm | |
| run: | | |
| corepack enable | |
| corepack prepare [email protected] --activate | |
| - name: Install rust | |
| uses: dtolnay/[email protected] | |
| - name: Install wasm-pack | |
| uses: jetli/[email protected] | |
| with: | |
| version: 'latest' | |
| - name: Install project dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint | |
| run: | | |
| echo "Running workspace format check..." | |
| NX_DAEMON=false pnpm run format:check |