Skip to content

Improve CI/CD and build setup #7

Improve CI/CD and build setup

Improve CI/CD and build setup #7

Workflow file for this run

name: Test and Build
on:
pull_request:
branches:
- main
jobs:
test:
name: Run all tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm install
- run: npm run build
- run: npm run test