feat(build): add timing for custom npm builds in Makefile #24
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
| # 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 | |
| # | |
| # SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors | |
| # SPDX-License-Identifier: MIT | |
| name: Lint php-cs | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: lint-php-cs-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| changes: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| src: ${{ steps.changes.outputs.src}} | |
| steps: | |
| - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
| id: changes | |
| continue-on-error: true | |
| with: | |
| filters: | | |
| src: | |
| - '.github/workflows/**' | |
| - 'configs/**' | |
| - '.php-cs-fixer.dist.php' | |
| - 'composer.json' | |
| - 'composer.lock' | |
| - '**.php' | |
| lint: | |
| runs-on: ubuntu-latest | |
| name: PHP CS fixer lint | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
| - name: Set up php8.1 | |
| uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 #v2.31.1 | |
| with: | |
| php-version: 8.1 | |
| extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite | |
| coverage: none | |
| ini-file: development | |
| - name: Install dependencies | |
| run: composer i | |
| - name: Install PHP CS fixer | |
| run: composer require --dev friendsofphp/php-cs-fixer | |
| - name: Lint | |
| run: composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 1 ) | |
| summary: | |
| permissions: | |
| contents: none | |
| runs-on: ubuntu-latest | |
| needs: [changes, lint] | |
| if: always() | |
| # This is the summary, we just avoid to rename it so that branch protection rules still match | |
| name: PHP CS Summary | |
| steps: | |
| - name: Summary status | |
| run: | | |
| if [[ "${{ needs.changes.outputs.src }}" == "false" ]]; then | |
| echo "No relevant changes detected. Nothing to lint." | |
| elif [[ "${{ needs.lint.result }}" != "success" ]]; then | |
| echo "Check the logs for details of 'PHP CS fixer lint' job." | |
| echo "Linting failed. Please run \`composer run cs:fix\` to fix the issues." | |
| exit 1 | |
| else | |
| echo "All checks passed successfully." | |
| fi |