Skip to content

build(deps-dev): bump prettier from 3.3.1 to 3.3.2 #158

build(deps-dev): bump prettier from 3.3.1 to 3.3.2

build(deps-dev): bump prettier from 3.3.1 to 3.3.2 #158

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@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
with:
egress-policy: audit
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: dtolnay/rust-toolchain@4f366e621dc8fa63f557ca04b8f4361824a35a45 # stable
- name: Install wasm-pack
run: cargo install wasm-pack
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
with:
version: 8
- name: Build
run: pnpm run build
- name: Install Node dependencies
run: pnpm install
- name: Check Format
run: pnpm run prettier:check
- name: Test
run: npm run test