Skip to content

Release 0.12.0

Release 0.12.0 #15

Workflow file for this run

name: Publish to npm
on:
push:
branches:
- release
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: pnpm setup
uses: pnpm/action-setup@v3
with:
version: 9
- name: Node.js setup
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: "https://registry.npmjs.org"
- name: Install
run: pnpm install --frozen-lockfile
- name: Run check, lint and test
run: |
pnpm run check
pnpm run lint
pnpm run test
- name: Build
run: pnpm --filter redgeometry run build
- name: Publish
run: pnpm publish ./packages/redgeometry --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}