42 lines
713 B
YAML
42 lines
713 B
YAML
name: Run tests
|
|
|
|
# on: [push, pull_request]
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'master'
|
|
tags-ignore:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [14.x] #, 12.x, 14.x, 15.x
|
|
|
|
name: Node.js ${{ matrix.node-version }}
|
|
|
|
steps:
|
|
- name: Git checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
env:
|
|
CI: true
|
|
|
|
- name: Test
|
|
run: npm run test
|
|
|
|
- name: Build
|
|
run: npm run build:dist
|