Skip to content

chore: updates build script #3

chore: updates build script

chore: updates build script #3

name: Test, lint, and build libraries
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
Test-and-Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint:ci
- name: Test
run: npm run test:ci
- name: Build All Projects
run: npm run build:ci