Skip to content

Commit 6b36f03

Browse files
committed
wip2
1 parent 8777955 commit 6b36f03

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/tests.yaml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
# https://github.com/nodejs/Release#release-schedule
17-
node: [ 14, 16 ]
17+
node: [ 14, 16, 18 ]
1818
steps:
1919
- uses: actions/checkout@v3
2020
- uses: actions/setup-node@v3
@@ -24,13 +24,10 @@ jobs:
2424
env:
2525
OKTA_DUMMY_CI_PW: ${{ secrets.OKTA_DUMMY_CI_PW }}
2626
WCS_DUMMY_CI_PW: ${{ secrets.WCS_DUMMY_CI_PW }}
27+
NODE_14: ${{ matrix.version == 14 }}
2728
run: |
28-
npm ci
29-
npm install graphql
30-
ci/run_dependencies.sh
31-
npm test
32-
ci/stop_dependencies.sh
33-
npm run build
29+
if $NODE_14; then echo "Hello"; fi
30+
echo "Hello2"
3431
deploy:
3532
needs: Tests
3633
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')

0 commit comments

Comments
 (0)