forked from MiczFlor/RPi-Jukebox-RFID
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'future3/develop' into future3/fix-docker-windows
- Loading branch information
Showing
153 changed files
with
9,478 additions
and
1,481 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ shared | |
src/webapp/node_modules | ||
src/webapp/npm-debug.log | ||
src/webapp/build | ||
src/webapp/build.bak |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Build Web App | ||
description: 'Build Web App with Node' | ||
inputs: | ||
webapp-root-path: | ||
description: 'root path of the Web App sources' | ||
required: false | ||
default: './src/webapp' | ||
outputs: | ||
webapp-root-path: | ||
description: 'used root path of the Web App sources' | ||
value: ${{ inputs.webapp-root-path }} | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Setup Node.js 20.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.x | ||
- name: run build | ||
working-directory: ${{ inputs.webapp-root-path }} | ||
shell: bash | ||
env: | ||
CI: false | ||
run: ./run_rebuild.sh -u |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Test Build Web App v3 | ||
|
||
on: | ||
schedule: | ||
# run at 18:00 every sunday | ||
- cron: '0 18 * * 0' | ||
push: | ||
branches: | ||
- 'future3/**' | ||
paths: | ||
- '.github/workflows/test_build_webapp_v3.yml' | ||
- '.github/actions/build-webapp/**' | ||
- 'src/webapp/**' | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: | ||
- future3/develop | ||
- future3/main | ||
paths: | ||
- '.github/workflows/test_build_webapp_v3.yml' | ||
- '.github/actions/build-webapp/**' | ||
- 'src/webapp/**' | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Build Web App | ||
uses: ./.github/actions/build-webapp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.