Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
emptynick committed Dec 20, 2021
1 parent 5962bbd commit 78fdad4
Show file tree
Hide file tree
Showing 3 changed files with 297 additions and 455 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/compile-assets.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Compile Assets

on:
push:
branches:
- 'main'
paths:
- 'src/**'
- 'package.json'

jobs:
compile-assets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: '16.x'

- name: Install Dependencies
run: npm install

- name: Compile Assets
run: npm run build

- name: Deploy compiled assets
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Build assets
push_options: '--force'
Loading

0 comments on commit 78fdad4

Please sign in to comment.