Skip to content

Commit

Permalink
adds: Symfony UX Controller online/offline status
Browse files Browse the repository at this point in the history
  • Loading branch information
Spomky committed Mar 5, 2024
1 parent e4c5f43 commit ed4a1c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14,639 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
/phpstan-baseline.neon export-ignore
/phpunit.xml.dist export-ignore
/rector export-ignore

/bin export-ignore
/babel.config.js export-ignore
/jest.config.js export-ignore
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/exported_files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ on: [push]

jobs:
tests:
runs-on: "ubuntu-20.04"
runs-on: ubuntu-latest
steps:
- name: "Checkout code"
uses: "actions/checkout@v4"

- name: "Check exported files"
run: |
EXPECTED="LICENSE,README.md,RELEASES.md,SECURITY.md,composer.json,link,package.json"
CURRENT="$(git archive HEAD | tar --list --exclude="src" --exclude="src/*" | paste -s -d ",")"
EXPECTED="LICENSE,README.md,RELEASES.md,SECURITY.md,composer.json,package.json"
CURRENT="$(git archive HEAD | tar --list --exclude="asset" --exclude="asset/*" --exclude="src" --exclude="src/*" | paste -s -d ",")"
echo "CURRENT =${CURRENT}"
echo "EXPECTED=${EXPECTED}"
test "${CURRENT}" == "${EXPECTED}"
Loading

0 comments on commit ed4a1c1

Please sign in to comment.