-
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 pull request #158 from RRZE-Webteam/dev
Dev
- Loading branch information
Showing
195 changed files
with
7,428 additions
and
3,979 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Exclude GitHub-specific files | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.github/ export-ignore | ||
|
||
# Exclude other hidden files | ||
.* export-ignore | ||
|
||
# Exclude GitHub templates (if applicable) | ||
/.github/* export-ignore |
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,39 @@ | ||
name: 'build-test' | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Prepare Plugin Files | ||
run: | | ||
mkdir plugin-package | ||
rsync -av --exclude='.*' \ | ||
--exclude='node_modules' \ | ||
--exclude='tests' \ | ||
--exclude='docs' \ | ||
--exclude='package.json' \ | ||
--exclude='package-lock.json' \ | ||
--exclude='webpack.config.js' \ | ||
--exclude='README.md' \ | ||
--exclude='composer.json' \ | ||
--exclude='composer.lock' \ | ||
--exclude='phpunit.xml' \ | ||
--exclude='phpcs.xml' \ | ||
--exclude='.git*' \ | ||
. plugin-package/ | ||
- name: WordPress Plugin Check | ||
uses: WordPress/plugin-check-action@v1 | ||
env: | ||
PLUGIN_DIR: ${{ github.workspace }}/plugin-package |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.