Update dependency @typescript/native-preview to v7.0.0-dev.20260624.1 - autoclosed #3926
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
| on: | |
| pull_request: | |
| branches: | |
| main | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'README.md' | |
| - 'CHANGELOG.md' | |
| - '.gitignore' | |
| - '.gitattributes' | |
| - 'infection.json.dist' | |
| - 'phpunit.xml.dist' | |
| push: | |
| branches: | |
| main | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'README.md' | |
| - 'CHANGELOG.md' | |
| - '.gitignore' | |
| - '.gitattributes' | |
| - 'infection.json.dist' | |
| - 'phpunit.xml.dist' | |
| schedule: | |
| - cron: '0 0 * * *' | |
| name: invoice static analysis | |
| jobs: | |
| psalm: | |
| name: PHP ${{ matrix.php }}-${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| php: | |
| - 8.5 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: fileinfo, pdo, pdo_sqlite, intl, gd, openssl, dom, json, mbstring, curl, uopz | |
| tools: composer:v2, cs2pr | |
| coverage: none | |
| - name: Determine composer cache directory | |
| run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV | |
| - name: Cache dependencies installed with composer | |
| uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 | |
| with: | |
| path: ${{ env.COMPOSER_CACHE_DIR }} | |
| key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }} | |
| restore-keys: | | |
| php${{ matrix.php }}-composer- | |
| - name: Update composer | |
| run: composer self-update | |
| - name: Install dependencies with composer | |
| run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi | |
| - name: Static analysis | |
| run: vendor/bin/psalm --shepherd --stats --output-format=checkstyle | cs2pr --graceful-warnings --colorize |