Skip to content

Commit

Permalink
fix ghaction typo, run tests on 12,14,16 (#76)
Browse files Browse the repository at this point in the history
* fix ghaction typo, run tests on 12,14,16
  • Loading branch information
purplecabbage committed Jan 15, 2022
1 parent b808da9 commit a829756
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/daily.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [14]
node-version: [14]
os: [ubuntu-latest]

steps:
Expand All @@ -30,6 +30,6 @@ jobs:
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_TITLE: 'Node version'
SLACK_MESSAGE: ${{ matrix.node }}
SLACK_MESSAGE: ${{ matrix.node-version }}
SLACK_COLOR: ${{ job.status == 'success' && 'good' || job.status == 'cancelled' && '#808080' || 'danger' }}

2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [12.x, 14.x, 16.x]
os: [ubuntu-latest, windows-latest]

steps:
Expand Down

0 comments on commit a829756

Please sign in to comment.