1
0
mirror of synced 2025-12-19 18:11:23 -05:00

ci: run tests on both Windows and Ubuntu (#368)

(meta)
This commit is contained in:
Justin Hall
2020-05-07 20:53:29 -06:00
committed by GitHub
parent 75a7feabf9
commit 290702e7be
4 changed files with 7 additions and 1 deletions

1
.gitattributes vendored Normal file
View File

@@ -0,0 +1 @@
* text=auto eol=lf

View File

@@ -13,7 +13,10 @@ on:
jobs:
build_and_test:
name: Build & Test
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js

View File

@@ -20,6 +20,7 @@ module.exports = {
globals: {
'ts-jest': {
tsConfig: 'test/tsconfig.json',
isolatedModules: true,
},
},
}

View File

@@ -5,4 +5,5 @@ module.exports = {
trailingComma: 'all',
semi: false,
printWidth: 110,
endOfLine: 'lf',
}