Skip to content

Release 0.6.0

Release 0.6.0 #8

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@v3
- name: pnpm setup
uses: pnpm/action-setup@v2
with:
version: 8
- name: Node.js setup
uses: actions/setup-node@v3
with:
node-version: 18
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 }}