Skip to content

Commit

Permalink
Create build-assets.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
awcodes authored Mar 15, 2023
1 parent 89df6a9 commit b0e0d91
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build-assets.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build Assets

on:
pull_request:
branches: [2.x]
types: [closed]

jobs:
npm-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
ref: 2.x

- name: Setup Node
uses: actions/setup-node@v3

- name: Install dependencies
run: npm ci

- name: Build assets
run: npm run build

- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
branch: 2.x
commit_message: >
Chore: build assets

0 comments on commit b0e0d91

Please sign in to comment.