Skip to content

Commit

Permalink
Merge pull request #5 from bitovi/feature/style-improvements
Browse files Browse the repository at this point in the history
WIP: Feature/style improvements
  • Loading branch information
Mattchewone authored Jan 28, 2025
2 parents b4f88bb + b1dc976 commit f3effdc
Show file tree
Hide file tree
Showing 37 changed files with 6,774 additions and 830 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Tests

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm ci
- run: npm test
9 changes: 9 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>/src'],
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.tsx?$': 'ts-jest'
}
};
Loading

0 comments on commit f3effdc

Please sign in to comment.