Skip to content

ci: Add basic GH Actions worfklow to test & build project. #3

ci: Add basic GH Actions worfklow to test & build project.

ci: Add basic GH Actions worfklow to test & build project. #3

Workflow file for this run

name: Test & Build
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
test-build:
name: Run tests and build project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run build