Skip to content

chore(package): remove specified PNPM version from package.json #18

chore(package): remove specified PNPM version from package.json

chore(package): remove specified PNPM version from package.json #18

Workflow file for this run

name: Release
on:
push:
branches: ['dev/test-ci']
permissions:
# allow pushing commits, creating tags, and modifying repo files
# needed for the workflow to update package.json versions and CHANGELOG files
contents: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rust-std
- name: Install wasm-pack
uses: jetli/[email protected]
with:
version: 'latest'
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '22.18.0'
- name: Setup PNPM
uses: pnpm/action-setup@v4
with:
version: 9.15.0
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build