Testing workflow

master
Mark Moffat 2020-03-22 19:54:55 +10:30
parent eb1a957367
commit 0c7f70f2f4
1 changed files with 26 additions and 0 deletions

26
.github/workflows/tests.yaml vendored Normal file
View File

@ -0,0 +1,26 @@
name: expressCart tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm i
- name: npm test
run: npm run test
env:
test: true