Skip to content

Commit

Permalink
Update dependencies (#8)
Browse files Browse the repository at this point in the history
* Add TypeScript compilation as test

* Add tests to GitHub Actions

* Patch updates

* Minor updates
  • Loading branch information
MattIPv4 authored Dec 5, 2024
1 parent 5450a57 commit d27ef3d
Show file tree
Hide file tree
Showing 3 changed files with 124 additions and 211 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,22 @@ jobs:

- name: Check formatting
run: npm run format:check

test:
name: Test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test
Loading

0 comments on commit d27ef3d

Please sign in to comment.