Skip to content

Update package.json to replace yarn with pnpm for prepublish and rele… #9

Update package.json to replace yarn with pnpm for prepublish and rele…

Update package.json to replace yarn with pnpm for prepublish and rele… #9

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Prepare repository
run: git fetch --unshallow --tags
- name: Use Node.js 20.x
uses: actions/setup-node@v1
with:
node-version: 20.x
- name: Install dependencies
uses: pnpm/action-setup@v4
- name: Install
run: |
pnpm install
- name: Build
run: |
pnpm run build
- name: Test
run: |
pnpm run test