CI for ubuntu as well
This commit is contained in:
parent
1f1dfec0fe
commit
fe167beda9
|
@ -24,7 +24,7 @@ jobs:
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [windows-latest, macos-latest]
|
os: [windows-latest, macos-latest, ubuntu-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Node
|
- name: Set up Node
|
||||||
|
@ -50,9 +50,11 @@ jobs:
|
||||||
run: npm run build
|
run: npm run build
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
|
if: runner.os != 'Linux'
|
||||||
run: npm run test
|
run: npm run test
|
||||||
|
|
||||||
- name: Upload test coverage artifact
|
- name: Upload test coverage artifact
|
||||||
|
if: runner.os != 'Linux'
|
||||||
uses: actions/upload-artifact@v2-preview
|
uses: actions/upload-artifact@v2-preview
|
||||||
with:
|
with:
|
||||||
name: test-coverage
|
name: test-coverage
|
||||||
|
|
Loading…
Reference in New Issue