Skip to content

Commit 1c668ac

Browse files
authoredSep 1, 2021
Fix health check (#39)
* Fix health check * Failure only * Re-add all versions
1 parent 31a1cd4 commit 1c668ac

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed
 

‎.github/workflows/health_check.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node: ['10', '12', '14']
11+
node: ['10','12','14','16']
12+
max-parallel: 1
1213
name: Node ${{ matrix.node }} Test
1314
steps:
1415
- name: Check out code
@@ -33,6 +34,7 @@ jobs:
3334
- name: Notify slack
3435
uses: kpritam/slack-job-status-action@v1
3536
with:
37+
if: ${{ failure() }}
3638
job-status: ${{ job.status }}
3739
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}
38-
channel: github-actions
40+
channel: eng-notifications

‎.github/workflows/publish.yml

+4
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,18 @@ jobs:
1313
with:
1414
node-version: 12
1515
registry-url: https://registry.npmjs.org/
16+
1617
- name: Install dependencies
1718
run: npm install
19+
1820
- name: Build package
1921
run: npm run build
22+
2023
- name: Run tests
2124
env:
2225
SANDBOX_API_KEY: ${{ secrets.SANDBOX_API_KEY }}
2326
run: npm test
27+
2428
- name: Publish package
2529
run: npm publish --access public
2630
env:

‎.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ node_modules
3232
# Optional REPL history
3333
.node_repl_history
3434

35-
# OpenAPI Code gen artifacts
36-
.openapi-generator/
35+
# Ignore openapi-generator artifacts
3736
.openapi-generator-ignore
37+
/.openapi-generator/
38+
git_push.sh
3839

3940
# OS artifacts
4041
.DS_Store

0 commit comments

Comments
 (0)