Skip to content

Commit 8e80bf8

Browse files
committed
Merge branch 'release/4.0.2' into v4
2 parents fda6caf + 1a2f875 commit 8e80bf8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+13173
-10964
lines changed

.github/workflows/build-and-deploy-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Build and Deploy Docs
22
env:
3-
DOCS_DEST_DIR: /transcoder/
3+
DOCS_DEST_DIR: /transcoder/v4/
44
on:
55
push:
66
branches:
@@ -9,7 +9,7 @@ on:
99
- 'docs/**'
1010
pull_request:
1111
branches:
12-
- v1
12+
- v4
1313
paths:
1414
- 'docs/**'
1515
workflow_dispatch:
@@ -22,11 +22,11 @@ jobs:
2222
strategy:
2323
fail-fast: true
2424
matrix:
25-
node-version: [ 14.x ]
25+
node-version: [ 20.x ]
2626
steps:
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v4
2828
- name: Use Node.js ${{ matrix.node-version }}
29-
uses: actions/setup-node@v2
29+
uses: actions/setup-node@v4
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
- run: npm ci

.github/workflows/code-analysis.yaml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Code Analysis
2+
3+
on:
4+
pull_request: null
5+
push:
6+
branches:
7+
- develop-v4
8+
workflow_dispatch:
9+
permissions:
10+
contents: read
11+
jobs:
12+
code_analysis:
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
actions:
17+
- name: 'PHPStan'
18+
run: composer phpstan
19+
- name: 'Coding Standards'
20+
run: composer fix-cs
21+
name: ${{ matrix.actions.name }}
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v4
25+
- name: Cache Composer dependencies
26+
uses: actions/cache@v4
27+
with:
28+
path: /tmp/composer-cache
29+
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
30+
- name: Setup PHP
31+
id: setup-php
32+
uses: shivammathur/setup-php@v2
33+
with:
34+
php-version: 8.2
35+
extensions: 'ctype,curl,dom,iconv,imagick,intl,json,mbstring,openssl,pcre,pdo,reflection,spl,zip'
36+
ini-values: post_max_size=256M, max_execution_time=180, memory_limit=512M
37+
tools: composer:v2
38+
- name: Install Composer dependencies
39+
run: composer install --no-interaction --no-ansi --no-progress
40+
- run: ${{ matrix.actions.run }}

0 commit comments

Comments
 (0)