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:
149
149
steps :
150
150
151
151
- name : ' Checkout'
152
- uses : actions/checkout@v1
152
+ uses : actions/checkout@v2
153
153
154
154
- name : ' Download GraalVM'
155
155
run : |
Original file line number Diff line number Diff line change 35
35
run : graphql-anonymizer <<< 'type Query{a:String}' > test_result
36
36
37
37
- 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
+
39
64
You can’t perform that action at this time.
0 commit comments