Skip to content

build(deps): bump step-security/harden-runner from 2.6.1 to 2.10.2 #21

build(deps): bump step-security/harden-runner from 2.6.1 to 2.10.2

build(deps): bump step-security/harden-runner from 2.6.1 to 2.10.2 #21

Workflow file for this run

name: Node
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
permissions: read-all
jobs:
test:
name: Vite Tests
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
disable-telemetry: true
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
with:
version: 8
- name: Install Node dependencies
run: pnpm install
- name: Check Format
run: pnpm run check:formatting
- uses: dtolnay/rust-toolchain@4f647fc679bcd3b11499ccb42104547c83dabe96 # stable
- name: Run tests
run: cargo install wasm-pack
- name: Build WASM
run: pnpm build
- name: Run unit tests
run: pnpm test