Skip to content

Commit 2dbe013

Browse files
committed
testing
1 parent 13c136b commit 2dbe013

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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: |

.github/workflows/test-released-version.yml

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,30 @@ jobs:
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

0 commit comments

Comments
 (0)