2020-10-21 03:38:37 +02:00
|
|
|
name: javascript-packages
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- build/javascript/package.json
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
name: npm run build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@v2
|
2021-07-12 18:13:06 +02:00
|
|
|
# with:
|
2021-04-13 08:13:26 +02:00
|
|
|
# Make sure the actual branch is checked out when running on pull requests
|
2021-07-12 18:13:06 +02:00
|
|
|
# ref: ${{ github.head_ref }}
|
2021-04-13 08:13:26 +02:00
|
|
|
|
2020-10-21 03:38:37 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
cd build/javascript
|
|
|
|
npm run build
|
|
|
|
|
|
|
|
- name: Commit changes
|
|
|
|
uses: EndBug/add-and-commit@v5
|
|
|
|
with:
|
|
|
|
author_name: Owncast
|
|
|
|
author_email: owncast@owncast.online
|
|
|
|
message: "Commit updated Javascript packages"
|
2020-10-31 00:04:03 +01:00
|
|
|
add: "build/javascript/package* webroot/js/web_modules"
|
2020-10-21 03:38:37 +02:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|