Add quaternion method to extract rotation axis and angle #102
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build (dry run) | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
build: | |
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 | |
- 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 | |
pnpm --filter redgeometry-app run build |