Skip to content

update README to add detailed usage instructions for global, local, a… #7

update README to add detailed usage instructions for global, local, a…

update README to add detailed usage instructions for global, local, a… #7

Workflow file for this run

name: Build dev
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
concurrency:
group: ci-dev-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
name: build-and-test (dev)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Install (frozen lockfile)
run: pnpm i --frozen-lockfile
- name: Build
run: pnpm build
- name: Test
run: pnpm test