Skip to content

Commit

Permalink
Merge pull request #158 from RRZE-Webteam/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
lukasniebler authored Oct 10, 2024
2 parents ebaa727 + dbfe644 commit ce2e6f8
Show file tree
Hide file tree
Showing 195 changed files with 7,428 additions and 3,979 deletions.
10 changes: 10 additions & 0 deletions .gitattributes
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
39 changes: 39 additions & 0 deletions .github/workflows/plugin-check.yml
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
10 changes: 8 additions & 2 deletions assets/css/rrze-elements-blocks.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/css/rrze-elements-blocks.css.map

Large diffs are not rendered by default.

15 changes: 8 additions & 7 deletions assets/js/accordion/rrze-accordion-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ce2e6f8

Please sign in to comment.