File tree Expand file tree Collapse file tree 6 files changed +39
-0
lines changed
Expand file tree Collapse file tree 6 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : Continuous Integration
3+
4+ on :
5+ push :
6+ branches : ['main']
7+ pull_request :
8+ branches : ['main']
9+
10+ jobs :
11+ static-code-analysis :
12+ name : Static code analysis
13+ runs-on : ubuntu-24.04
14+ steps :
15+ - name : Checkout Git repository
16+ uses : actions/checkout@v4
17+ - name : Setup Node.js
18+ uses : actions/setup-node@v5
19+ with :
20+ node-version-file : ' .node-version'
21+ - name : Install dependencies
22+ run : npm clean-install
23+ - name : Run all tests
24+ run : npx just test
Original file line number Diff line number Diff line change 1+ v24.9.0
Original file line number Diff line number Diff line change 1313lint-fix :
1414 prettier --log-level warn --write .
1515 eslint --fix .
16+
17+ test-unit :
18+ node --test source/ **/ *.test.ts
19+
20+ test : compile lint test-unit
Original file line number Diff line number Diff line change 44 "main" : " index.js" ,
55 "type" : " module" ,
66 "scripts" : {},
7+ "engines" : {
8+ "node" : " >=22.18.0"
9+ },
710 "repository" : {
811 "type" : " git" ,
912 "url" : " git+https://github.com/enormora/objectory.git"
Original file line number Diff line number Diff line change 1+ export function main ( ) : string {
2+ return '' ;
3+ }
Original file line number Diff line number Diff line change 88 "sourceMap" : true ,
99 "allowJs" : false ,
1010 "allowSyntheticDefaultImports" : true ,
11+ "allowImportingTsExtensions" : true ,
12+ "rewriteRelativeImportExtensions" : true ,
13+ "erasableSyntaxOnly" : true ,
1114 "composite" : true ,
1215 "declaration" : true ,
1316 "declarationMap" : true ,
You can’t perform that action at this time.
0 commit comments