We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5396aa2 commit 7031560Copy full SHA for 7031560
1 file changed
.github/workflows/test-released-version.yml
@@ -40,6 +40,9 @@ jobs:
40
test-windows-image:
41
name: 'Test Windows Image'
42
runs-on: windows-latest
43
+ defaults:
44
+ run:
45
+ shell: bash
46
47
48
steps:
@@ -54,7 +57,7 @@ jobs:
54
57
55
58
- name: 'run'
56
59
id: run-anonymizer
- run: echo "type Query{a:String}" > input.txt && graphql-anonymizer < input.txt > test_result
60
+ run: graphql-anonymizer <<< 'type Query{a:String}' > test_result
61
62
- name: 'assert'
63
run: grep "field1" test_result
0 commit comments