Skip to content

Added new docs route #7

Added new docs route

Added new docs route #7

Workflow file for this run

name: nodejs-ci
on:
# Trigger when a new commit is pushed in main branch
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
# checkout the code
- uses: actions/checkout@v2
# setup the nodejs environment
- uses: actions/setup-node@v2
with:
node-version: 16
- run: npm install
- run: npm run test