build(deps): bump actions/setup-node from 4 to 6 #861
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: ci-lint-typescript | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - "ts-packages/**" | |
| - "sdk/typescript/**" | |
| - "nym-wallet/src/**" | |
| - "nym-wallet/package.json" | |
| - "explorer-v2/**" | |
| - ".github/workflows/ci-lint-typescript.yml" | |
| jobs: | |
| build: | |
| runs-on: arc-linux-latest | |
| env: | |
| RUSTUP_PERMIT_COPY_RENAME: 1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: rlespinasse/[email protected] | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| - name: Setup yarn | |
| run: npm install -g yarn | |
| - name: Install Rust stable | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| - name: Install wasm-pack | |
| run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
| - name: Install wasm-opt | |
| run: cargo install wasm-opt | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.24.6" | |
| - name: Install | |
| run: yarn | |
| - name: Build packages | |
| run: yarn build:ci | |
| - name: Install again | |
| run: yarn | |
| - name: Lint | |
| run: yarn lint | |
| - name: Typecheck with tsc | |
| run: yarn tsc |