memories/.github/workflows/static-analysis.yaml

76 lines
1.7 KiB
YAML
Raw Permalink Normal View History

---
name: static analysis
2023-10-14 09:13:34 +00:00
on:
push:
paths-ignore:
- 'docs/**'
2023-11-01 16:43:27 +00:00
- 'go-vod/**'
- 'android/**'
- 'mkdocs.yml'
- '**.md'
pull_request:
paths-ignore:
- 'docs/**'
2023-11-01 16:43:27 +00:00
- 'go-vod/**'
- 'android/**'
- 'mkdocs.yml'
- '**.md'
2023-10-14 09:13:34 +00:00
jobs:
php-lint:
name: PHP Lint
runs-on: ubuntu-latest
2023-10-14 09:13:34 +00:00
steps:
- name: Checkout server
uses: actions/checkout@v4
2023-10-14 09:13:34 +00:00
with:
submodules: true
repository: nextcloud/server
ref: stable27
- name: Checkout the app
uses: actions/checkout@v4
2023-10-14 09:13:34 +00:00
with:
path: apps/memories
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
tools: phpunit
extensions: mbstring, iconv, fileinfo, intl
coverage: none
- name: Install dependencies
working-directory: apps/memories
2023-10-14 09:13:34 +00:00
run: |
make install-tools
- name: Run PHP-CS-Fixer
if: ${{ ! cancelled() }}
working-directory: apps/memories
run: |
vendor/bin/php-cs-fixer fix --dry-run --diff
- name: Run Psalm
if: ${{ ! cancelled() }}
working-directory: apps/memories
run: |
vendor/bin/psalm --no-cache --shepherd --stats --threads=max lib
vue-lint:
name: Vue Lint
runs-on: ubuntu-latest
steps:
- name: Checkout the app
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Run vue-tsc
run: npx vue-tsc --noEmit --skipLibCheck
- name: Run Prettier
run: npx prettier src --check