Skip to content

Commit

Permalink
Added GitHub Workflow to automatically build production js when pushi…
Browse files Browse the repository at this point in the history
…ng to main branch
  • Loading branch information
webworkerJoshua committed Mar 19, 2024
1 parent c520c1f commit 5a8eaff
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build and conditionally comit changes

on:
push:
branches:
- master

jobs:
install-build-commit:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/[email protected]

- name: Set up Node.js
uses: actions/[email protected]
with:
node-version: "18"

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build

- name: commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[skip ci] Automated changes (build)"

0 comments on commit 5a8eaff

Please sign in to comment.