Skip to content

better files structure for test and script for formatting the code #1

better files structure for test and script for formatting the code

better files structure for test and script for formatting the code #1

Workflow file for this run

name: Build and Test
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build-local