We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3280546 commit bc6ff53Copy full SHA for bc6ff53
.github/workflows/node.js.yml
@@ -3,20 +3,18 @@
3
4
name: Node.js CI
5
6
-on:
7
- push:
8
- branches: [ master ]
9
- pull_request:
10
+on: [push, pull_request]
11
12
jobs:
13
build:
+ name: Tests - ${{ matrix.os }} - Node.js v${{ matrix.node-version }}
14
15
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
16
17
strategy:
18
matrix:
19
- node-version: [10.x, 12.x, 14.x]
+ os: [ubuntu-latest, macos-latest]
+ node-version: [12.x, 13.x, 14.x]
20
21
steps:
22
- uses: actions/checkout@v2
0 commit comments