Skip to content

Commit

Permalink
fix ghaction typo, run tests on 12,14,16 skip daily on forks (#258)
Browse files Browse the repository at this point in the history
* fix ghaction typo, run tests on 12,14,16 skip daily on forks
  • Loading branch information
purplecabbage authored Jan 21, 2022
1 parent 5531346 commit f92136b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ on:

jobs:
build:
if: github.repository_owner == 'adobe'
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [14]
node-version: [14]
os: [ubuntu-latest]

steps:
Expand All @@ -29,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
Original file line number Diff line number Diff line change
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 f92136b

Please sign in to comment.