forked from w3c/specberus
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (44 loc) · 1.41 KB
/
node.js.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Specberus tests
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request_target:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- name: Checkout
if: ${{ github.event_name != 'pull_request_target' }}
uses: actions/checkout@v2
- name: Checkout PR
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run coverage
env:
W3C_API_KEY: ${{ secrets.W3C_API_KEY }}
- name: Notify failure
uses: rectalogic/notify-irc@v1
if: failure() && github.event.pull_request.draft == false
with:
server: 'irc.w3.org'
port: 6679
channel: '#pubrules'
nickname: gh-action-notifier
tls: true
message: |
${{ github.actor }} pushed to ${{ github.repository }}. https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} FAILED with node ${{ matrix.node-version}} (PR: ${{ github.event.pull_request.html_url }})