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 429d4c0 commit 5396aa2Copy full SHA for 5396aa2
.github/workflows/test-released-version.yml
@@ -51,9 +51,10 @@ jobs:
51
- name: 'install'
52
run: npm i -g graphql-anonymizer@${{github.event.inputs.version}}
53
54
+
55
- name: 'run'
56
id: run-anonymizer
- run: graphql-anonymizer <<< 'type Query{a:String}' > test_result
57
+ run: echo "type Query{a:String}" > input.txt && graphql-anonymizer < input.txt > test_result
58
59
- name: 'assert'
60
run: grep "field1" test_result
0 commit comments