Skip to content

Fix gulp task make-api-doc #298

Fix gulp task make-api-doc

Fix gulp task make-api-doc #298

Workflow file for this run

name: JScrewIt Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20'
- run: |
npm install --workspaces
npm install
npm run --workspaces make
gulp lint
gulp bundle:lib
- uses: actions/upload-artifact@v3
with:
name: lib
path: lib
test:
name: test (Node.js ${{ matrix.node-version }})
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['0.10', '0.12', '4', '6', '8', '10', '12', '14', '16', '18', '20']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/download-artifact@v3
with:
name: lib
path: lib
- run: |
npm install @types/mocha@9 ebdd expectations mocha@3 postrequire
npm test