1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
* text=auto eol=lf
|
||||||
5
.github/workflows/main.yml
vendored
5
.github/workflows/main.yml
vendored
@@ -13,7 +13,10 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build_and_test:
|
build_and_test:
|
||||||
name: Build & Test
|
name: Build & Test
|
||||||
runs-on: ubuntu-latest
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, windows-latest]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Use Node.js
|
- name: Use Node.js
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ module.exports = {
|
|||||||
globals: {
|
globals: {
|
||||||
'ts-jest': {
|
'ts-jest': {
|
||||||
tsConfig: 'test/tsconfig.json',
|
tsConfig: 'test/tsconfig.json',
|
||||||
|
isolatedModules: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,4 +5,5 @@ module.exports = {
|
|||||||
trailingComma: 'all',
|
trailingComma: 'all',
|
||||||
semi: false,
|
semi: false,
|
||||||
printWidth: 110,
|
printWidth: 110,
|
||||||
|
endOfLine: 'lf',
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user