ci: update workflows #1601
Workflow file for this run
This file contains 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: Build and Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.ref }} | |
permissions: | |
contents: read | |
jobs: | |
php: | |
name: Build PHP part | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: | |
- "7.4" | |
- "8.0" | |
- "8.1" | |
dependencies: | |
- lowest | |
- locked | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@72ae4ccbe57f82bbe08411e84e2130bd4ba1c10f # 2.25.5 | |
with: | |
php-version: ${{ matrix.php }} | |
- name: Install Composer Dependencies | |
uses: ramsey/composer-install@83af392bf5f031813d25e6fe4cd626cdba9a2df6 # 2.2.0 | |
with: | |
dependency-versions: ${{ matrix.dependencies }} | |
js: | |
name: Build JS part | |
runs-on: ubuntu-latest | |
env: | |
NPM_CONFIG_FUND: "0" | |
NPM_CONFIG_AUDIT: "0" | |
SUPPRESS_SUPPORT: "1" | |
NO_UPDATE_NOTIFIER: "true" | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- name: Set up Node.js environment | |
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 | |
with: | |
node-version: lts/* | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build |