mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 03:16:48 +03:00
21 lines
355 B
YAML
21 lines
355 B
YAML
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
|
|
- name: npm install, build, and test
|
|
run: |
|
|
npm install
|
|
npm run bundle
|
|
npm test
|