Skip to content

feat: Add documentation for the new directory structure #86

feat: Add documentation for the new directory structure

feat: Add documentation for the new directory structure #86

Workflow file for this run

name: Test Build
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Test Build
run: |
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
npm run build