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 6b36f03 commit fd196d3Copy full SHA for fd196d3
.github/workflows/tests.yaml
@@ -25,8 +25,10 @@ jobs:
25
OKTA_DUMMY_CI_PW: ${{ secrets.OKTA_DUMMY_CI_PW }}
26
WCS_DUMMY_CI_PW: ${{ secrets.WCS_DUMMY_CI_PW }}
27
NODE_14: ${{ matrix.version == 14 }}
28
+ NODE_14_2: ${{ matrix.version }} == 14
29
+ NODE_14_3: matrix.version == 14
30
run: |
- if $NODE_14; then echo "Hello"; fi
31
+ if ${{ matrix.version == 14 }}; then echo "Hello"; fi
32
echo "Hello2"
33
deploy:
34
needs: Tests
0 commit comments