File tree 1 file changed +4
-24
lines changed
1 file changed +4
-24
lines changed Original file line number Diff line number Diff line change 6
6
- main
7
7
- ' renovate/*'
8
8
jobs :
9
- build :
10
- runs-on : ubuntu-18.04
11
- if : github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/'))
12
- strategy :
13
- matrix :
14
- node : [ '12', '14' ]
15
- name : Node ${{ matrix.node }}
16
- steps :
17
- - uses : actions/checkout@v2
18
- - uses : actions/setup-node@v2
19
- with :
20
- node-version : ${{ matrix.node }}
21
- - run : yarn global add lerna
22
- - run : yarn
23
- - run : yarn test
24
-
25
- - uses : codecov/codecov-action@v2
26
-
27
- - uses : daniellockyer/action-slack-build@master
28
- if : failure() && github.event_name == 'push' && github.ref == 'refs/heads/main'
29
- with :
30
- status : ${{ job.status }}
31
- env :
32
- SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK_URL }}
9
+ test :
10
+ uses : tryghost/actions/.github/workflows/test.yml@main
11
+ secrets :
12
+ SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK_URL }}
You can’t perform that action at this time.
0 commit comments