Skip to content

Commit

Permalink
Merge pull request #1527 from nextcloud/backport/1526/stable25
Browse files Browse the repository at this point in the history
[stable25] fix(deps): Update webpack
  • Loading branch information
nickvergessen authored Apr 21, 2023
2 parents f30e3a9 + dd83148 commit 59c8052
Show file tree
Hide file tree
Showing 9 changed files with 445 additions and 350 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/phpunit-summary-when-unrelated.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# This workflow is provided via the organization template repository
#
# https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization

name: PHPUnit

on:
pull_request:
paths-ignore:
- '.github/workflows/phpunit.yml'
- 'appinfo/**'
- 'lib/**'
- 'templates/**'
- 'tests/**'

permissions:
contents: read

jobs:
summary-mysql:
permissions:
contents: none
runs-on: ubuntu-latest

name: phpunit-mysql-summary

steps:
- name: Summary status
run: 'echo "No PHP files changed, skipped PHPUnit"'

summary-oci:
permissions:
contents: none
runs-on: ubuntu-latest

name: phpunit-oci-summary

steps:
- name: Summary status
run: 'echo "No PHP files changed, skipped PHPUnit"'

summary-pgsql:
permissions:
contents: none
runs-on: ubuntu-latest

name: phpunit-pgsql-summary

steps:
- name: Summary status
run: 'echo "No PHP files changed, skipped PHPUnit"'

summary-sqlite:
permissions:
contents: none
runs-on: ubuntu-latest

name: phpunit-sqlite-summary

steps:
- name: Summary status
run: 'echo "No PHP files changed, skipped PHPUnit"'
56 changes: 56 additions & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -265,3 +265,59 @@ jobs:
- name: PHPUnit
working-directory: apps/${{ env.APP_NAME }}/tests/Unit
run: ../../vendor/bin/phpunit -c phpunit.xml

summary-sqlite:
permissions:
contents: none
runs-on: ubuntu-latest
needs: sqlite

if: always()

name: phpunit-sqlite-summary

steps:
- name: Summary status
run: if ${{ needs.sqlite.result != 'success' }}; then exit 1; fi

summary-mysql:
permissions:
contents: none
runs-on: ubuntu-latest
needs: mysql

if: always()

name: phpunit-mysql-summary

steps:
- name: Summary status
run: if ${{ needs.mysql.result != 'success' }}; then exit 1; fi

summary-pgsql:
permissions:
contents: none
runs-on: ubuntu-latest
needs: pgsql

if: always()

name: phpunit-pgsql-summary

steps:
- name: Summary status
run: if ${{ needs.pgsql.result != 'success' }}; then exit 1; fi

summary-oci:
permissions:
contents: none
runs-on: ubuntu-latest
needs: oci

if: always()

name: phpunit-oci-summary

steps:
- name: Summary status
run: if ${{ needs.oci.result != 'success' }}; then exit 1; fi
4 changes: 2 additions & 2 deletions js/notifications-admin-settings.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/notifications-admin-settings.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/notifications-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/notifications-main.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/notifications-settings.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/notifications-settings.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 59c8052

Please sign in to comment.