12345678910111213141516171819202122232425 |
- name: Test
- on:
- push:
- branches:
- - master
- pull_request:
- types: [opened, synchronize]
- jobs:
- test:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- node_version: [8, 10, 12]
- steps:
- - uses: actions/checkout@master
- - name: Use Node.js ${{ matrix.node_version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node_version }}
- - name: Install
- run: npm ci
- - name: Test
- run: npm test
|