Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
timacdonald committed Jun 26, 2024
1 parent 197a7e7 commit 6de8536
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: compile assets

on: [push]

jobs:
compile:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: latest

- name: Install NPM dependencies
run: npm ci

- name: Compile assets
run: npm run build

- name: Commit compiled files
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Compile Assets
file_pattern: dist/

0 comments on commit 6de8536

Please sign in to comment.