Files
JavaScript/.github/workflows/nodejs.yml
2020-05-13 00:10:46 +02:00

28 lines
704 B
YAML

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install doctest
doctest --module Sorts Sorts/BogoSort.js
# node -e "doctest('Sorts/BogoSort.js', {})"
npm install standard --save-dev
npx standard
cd Linear-Algebra-Javascript
npm ci
npm run build --if-present
npm test
env:
CI: true