Skip to content

Simplify generation of documentation #4785

Simplify generation of documentation

Simplify generation of documentation #4785

Workflow file for this run

---
name: javascript
# yamllint disable-line rule:truthy
on: [push, pull_request]
jobs:
test:
name: Node ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [16.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm i
- name: npm run lint
run: npm run lint