Skip to content

Commit

Permalink
Re-adding build Action
Browse files Browse the repository at this point in the history
  • Loading branch information
karoun committed Dec 5, 2024
1 parent 5d695bb commit b529dcd
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"
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- master
- 'releases/*'

jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
npm install
npm run all

0 comments on commit b529dcd

Please sign in to comment.