redoc/.github/workflows/unit-tests.yml

21 lines
355 B
YAML
Raw Normal View History

name: Unit Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: 10.x
2020-03-17 12:06:03 +03:00
- name: npm install, build, and test
run: |
2020-03-17 12:06:03 +03:00
npm install
npm run bundle
npm test