Skip to content

Commit

Permalink
ci: Add basic GH Actions worfklow to test & build project.
Browse files Browse the repository at this point in the history
  • Loading branch information
microbit-carlos committed Feb 29, 2024
1 parent 0898e2f commit cea5aca
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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

0 comments on commit cea5aca

Please sign in to comment.