Skip to content

Commit 12ed57a

Browse files
authored
Disable unit testing on windows for now (#534)
1 parent 78c3814 commit 12ed57a

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,23 @@ jobs:
3333
- run: git config --global user.email "viame-web@kitware.com"
3434
- run: yarn lint
3535
- run: yarn lint:templates
36-
- run: yarn test
36+
37+
- name: Unit tests
38+
run: yarn test
39+
if: ${{ matrix.config.os != 'windows-latest' }}
40+
3741
- run: yarn build:lib
3842
- run: yarn build:electron
3943
- run: yarn build:cli
4044
- run: chmod +x bin/platform/desktop/backend/cli.js
45+
4146
- name: Publish to NPM
4247
run: yarn publish --new-version ${{ github.event.release.tag_name }}
4348
if: ${{ matrix.config.os == 'ubuntu-latest' }}
4449
env:
4550
# Use a token to publish to NPM. Must configure this!
4651
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
52+
4753
# push the version changes to GitHub
4854
- name: Upload Release Asset
4955
uses: alexellis/upload-assets@0.2.3

0 commit comments

Comments
 (0)