Commit c35c00d 1 parent 4b0bbb9 commit c35c00d Copy full SHA for c35c00d
File tree 1 file changed +13
-3
lines changed
.github/workflows/actions/quarto-dev
1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change 34
34
- name : Basic dev mode sanity check
35
35
shell : pwsh
36
36
run : |
37
- If ( "$(quarto --version)" -ne "99.9.9") { Exit 1 }
38
- If ( $(quarto --paths | Select-String -Pattern "package[/\\]+dist[/\\]+share") -ne $null ) { Exit 1 }
39
- If ( "$(git status --porcelain)" -ne "" ) { Exit 1 }
37
+ If ( "$(quarto --version)" -ne "99.9.9") {
38
+ echo "Unexpected version detected: $(quarto --version)"
39
+ Exit 1
40
+ }
41
+ If ( $(quarto --paths | Select-String -Pattern "package[/\\]+dist[/\\]+share") -ne $null ) {
42
+ echo "Unexpected package/dist/share path detected: $(quarto --paths)"
43
+ Exit 1
44
+ }
45
+ If ( "$(git status --porcelain)" -ne "" ) {
46
+ echo "Uncommitted changes detected:"
47
+ git status --porcelain
48
+ Exit 1
49
+ }
40
50
41
51
- name : Quarto Check
42
52
if : runner.debug == '1'
You can’t perform that action at this time.
0 commit comments