Skip to content

added a few more commands that are utilized for CI/CD #33

added a few more commands that are utilized for CI/CD

added a few more commands that are utilized for CI/CD #33

Workflow file for this run

name: CI
on:
push:
branches: "**"
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 8
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run build
- run: npm run docs:code
env:
NODE_OPTIONS: --max-old-space-size=4096
NO_COLOR: true