Skip to content

refactor: yarn to pnpm change in git workflows #2

refactor: yarn to pnpm change in git workflows

refactor: yarn to pnpm change in git workflows #2

Workflow file for this run

name: Run Tests
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test