Skip to content

Commit d27ef3d

Browse files
authored
Update dependencies (#8)
* Add TypeScript compilation as test * Add tests to GitHub Actions * Patch updates * Minor updates
1 parent 5450a57 commit d27ef3d

File tree

3 files changed

+124
-211
lines changed

3 files changed

+124
-211
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,22 @@ jobs:
2323

2424
- name: Check formatting
2525
run: npm run format:check
26+
27+
test:
28+
name: Test
29+
runs-on: ubuntu-latest
30+
31+
steps:
32+
- uses: actions/checkout@v3
33+
34+
- name: Setup Node.js
35+
uses: actions/setup-node@v3
36+
with:
37+
node-version-file: .nvmrc
38+
cache: npm
39+
40+
- name: Install dependencies
41+
run: npm ci
42+
43+
- name: Run tests
44+
run: npm test

0 commit comments

Comments
 (0)