Skip to content

added more information and structure to docs #3

added more information and structure to docs

added more information and structure to docs #3

Workflow file for this run

name: Continuous integration
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache server dependencies
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: ./package-lock.json
- name: Install dependencies
run: npm install
- name: npm build
run: npm run build