build(deps): bump shivammathur/setup-php from 2.35.4 to 2.35.5 #282
Workflow file for this run
This file contains hidden or 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
| name: Nextcloud app setup | |
| on: | |
| push: | |
| paths: | |
| - '**setup-nextcloud-app**' | |
| - 'package.json' | |
| - 'package-lock.json' | |
| - 'node_modules/**' | |
| pull_request: | |
| paths: | |
| - '**setup-nextcloud-app**' | |
| - 'package.json' | |
| - 'package-lock.json' | |
| - 'node_modules/**' | |
| jobs: | |
| setup-nextcloud-app: | |
| runs-on: ubuntu-latest | |
| env: | |
| FILENAME: ".revision" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup PHP | |
| uses: shivammathur/[email protected] | |
| with: | |
| php-version: '8.2' | |
| - name: Server setup | |
| uses: ./setup-nextcloud/ | |
| with: | |
| version: 'stable27' | |
| database-type: 'sqlite' | |
| - name: Test setup | |
| run: | | |
| mkdir appinfo && | |
| curl https://raw.githubusercontent.com/nextcloud/app-tutorial/HEAD/appinfo/info.xml -o appinfo/info.xml | |
| - name: Script test | |
| uses: ./setup-nextcloud-app/ | |
| with: | |
| app: 'notestutorial' | |
| check-code: false | |
| force: true | |
| - name: Test setup | |
| run: cd ../server && ./occ app:list | grep notestutorial |