mirror of
https://github.com/Redocly/redoc.git
synced 2025-02-07 21:40:32 +03:00
22 lines
383 B
YAML
22 lines
383 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: yarn install, build, and test
|
||
|
run: |
|
||
|
npm install -g yarn
|
||
|
yarn install
|
||
|
yarn bundle
|
||
|
yarn test
|