Skip to content

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

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

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

Workflow file for this run

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