File tree Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ jobs:
149149 steps :
150150
151151 - name : ' Checkout'
152- uses : actions/checkout@v1
152+ uses : actions/checkout@v2
153153
154154 - name : ' Download GraalVM'
155155 run : |
Original file line number Diff line number Diff line change 3535 run : graphql-anonymizer <<< 'type Query{a:String}' > test_result
3636
3737 - name : ' assert'
38- run : grep "fieldX" test_result
38+ run : grep "field1" test_result
39+
40+ test-windows-image :
41+ needs : [ build-jar-job ]
42+ name : ' Build Windows Image'
43+ runs-on : windows-latest
44+ env :
45+ RELEASE_VERSION : ${{ github.event.inputs.version }}
46+
47+
48+ steps :
49+ - name : ' Setup Node'
50+ uses : actions/setup-node@v2
51+ with :
52+ node-version : 12.x
53+
54+ - name : ' install'
55+ run : npm i -g graphql-anonymizer@${{github.event.inputs.version}}
56+
57+ - name : ' run'
58+ id : run-anonymizer
59+ run : graphql-anonymizer <<< 'type Query{a:String}' > test_result
60+
61+ - name : ' assert'
62+ run : grep "field1" test_result
63+
3964
You can’t perform that action at this time.
0 commit comments