We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5434c12 commit 387c698Copy full SHA for 387c698
.github/workflows/test.yml
@@ -51,11 +51,21 @@ jobs:
51
- name: Clean distribution files
52
run: npm run clean
53
- name: Test sources
54
- run: npm test
+ run: |
55
+ if [[ `node bin/asc --version` != *"-dev" ]]; then
56
+ echo "ERROR: Not testing sources"
57
+ exit 1
58
+ fi
59
+ npm test
60
- name: Build distribution files
61
run: npm run build
62
- name: Test distribution
63
64
+ if [[ `node bin/asc --version` == *"-dev" ]]; then
65
+ echo "ERROR: Not testing distribution"
66
67
68
69
test-windows:
70
name: "Compiler (Windows, node current)"
71
runs-on: windows-latest
0 commit comments