Skip to content

Commit

Permalink
Refactor and update
Browse files Browse the repository at this point in the history
Updated dependencies, removed TweakpaneSettings, migrated to Jest, divided into modules, changed cartesianToPolar to using Point instead of coordinates, renamed intersection to intersectCircles, added intersectLines and PID class
  • Loading branch information
kgolinski committed Aug 7, 2024
1 parent 6e65f7b commit 301e86f
Show file tree
Hide file tree
Showing 35 changed files with 2,124 additions and 2,099 deletions.
25 changes: 0 additions & 25 deletions .eslintrc.js

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/nodejs.yml

This file was deleted.

1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# TODO
22 changes: 22 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci --no-audit
- name: Run Jest tests
run: npm test
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
package-lock.json
package-lock.json
coverage
Loading

0 comments on commit 301e86f

Please sign in to comment.