forked from MiczFlor/RPi-Jukebox-RFID
-
Notifications
You must be signed in to change notification settings - Fork 0
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/multi-player
- Loading branch information
Showing
174 changed files
with
10,680 additions
and
2,053 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Markdown Linting | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'future3/**' | ||
paths: | ||
- '**.md' | ||
pull_request: | ||
branches: | ||
- 'future3/**' | ||
paths: | ||
- '**.md' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Linting markdown | ||
uses: DavidAnson/markdownlint-cli2-action@v15 | ||
with: | ||
config: .markdownlint-cli2.yaml | ||
#continue-on-error: true |
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 |
Oops, something went wrong.