Skip to content

Commit

Permalink
improvement(issue18): Add build file for Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
JinnJarBurger committed Oct 16, 2024
1 parent ff6fe9f commit a8a5524
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build Push/PR - Master

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install node modules
run: npm install --progress=false
- name: Build project
run: npm run build

0 comments on commit a8a5524

Please sign in to comment.