Skip to content

docs: add some inline docs to explain some points #84

docs: add some inline docs to explain some points

docs: add some inline docs to explain some points #84

Workflow file for this run

name: Main
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: package-lock.json
- name: install dependencies
run: npm ci
- name: lint
run: npm run lint
- name: run test
run: npm test
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: package-lock.json
- name: run audit
run: npm audit --production