Skip to content

Add naga-staging + Artillery improvements #2923

Add naga-staging + Artillery improvements

Add naga-staging + Artillery improvements #2923

Workflow file for this run

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