Skip to content

Webpage building

Webpage building #14

Workflow file for this run

name: Validate NeuroJson_io Project
on:
pull_request:
branches:
- "*"
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies
run: yarn install
- name: Compile TypeScript
run: yarn build
- name: Run Security Audit
run: yarn audit --level moderate