Merge branch 'master' of github.com:danmindru/responsive-html-email-signature

This commit is contained in:
Dan Mindru 2019-09-03 11:16:06 +02:00
commit 356ddd41cb
1 changed files with 9 additions and 7 deletions

View File

@ -1,15 +1,16 @@
name: Node CI
name: Test template output
on: [push]
jobs:
build:
runs-on: ubuntu-latest
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
node-version: [8, 10, 12]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
@ -17,7 +18,8 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
- name: npm install & test
run: |
npm install
npm test