Skip to content

Commit

Permalink
Merge pull request #6 from structure-codes/move-to-tree-utils
Browse files Browse the repository at this point in the history
Move to tree utils
  • Loading branch information
alex-oser authored Mar 7, 2022
2 parents 121fe06 + 6643fe5 commit da2196e
Show file tree
Hide file tree
Showing 34 changed files with 2,972 additions and 2,107 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,17 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: package
- name: set default config
run: |
npm ci
npm test
npm run build
echo '{
"ignored": [
".git",
"node_modules"
]
}' > $HOME/.treerc
- name: npm ci
run: npm ci
- name: npm test
run: npm test
- name: npm run build
run: npm run build
10 changes: 10 additions & 0 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
roots: ["<rootDir>/src"],
testPathIgnorePatterns: ["<rootDir>/src/__tests__/testStructure"],
testRegex: ".*\\.test\\.ts$",
testTimeout: 3000,
transform: {
"^.+\\.ts?$": "ts-jest",
},
};
Loading

0 comments on commit da2196e

Please sign in to comment.