|
16 | 16 | - name: Skip for release-please |
17 | 17 | id: check |
18 | 18 | run: | |
19 | | - if [ "${{ github.event.pull_request.user.id }}" == '41898282' ]; then |
| 19 | + if [ "${{ github.event.pull_request.user.id }}" = '41898282' ]; then |
20 | 20 | echo "run=false" >> $GITHUB_OUTPUT |
21 | 21 | echo "::notice::Skipping CI checks - release-please PR" |
22 | 22 | else |
@@ -73,23 +73,23 @@ jobs: |
73 | 73 |
|
74 | 74 | - name: Install Doctrine Lexer dependency |
75 | 75 | run: | |
76 | | - if [ "${{ matrix.doctrine-lexer }}" == "1.2" ]; then |
| 76 | + if [ "${{ matrix.doctrine-lexer }}" = "1.2" ]; then |
77 | 77 | composer require doctrine/lexer "~1.2" --dev --prefer-dist --no-interaction --no-progress |
78 | | - elif [ "${{ matrix.doctrine-lexer }}" == "2.1" ]; then |
| 78 | + elif [ "${{ matrix.doctrine-lexer }}" = "2.1" ]; then |
79 | 79 | composer require doctrine/lexer "~2.1" --dev --prefer-dist --no-interaction --no-progress |
80 | | - elif [ "${{ matrix.doctrine-lexer }}" == "3.0" ]; then |
| 80 | + elif [ "${{ matrix.doctrine-lexer }}" = "3.0" ]; then |
81 | 81 | composer require doctrine/lexer "~3.0" --dev --prefer-dist --no-interaction --no-progress |
82 | 82 | else |
83 | 83 | composer update --prefer-dist --no-interaction --no-progress |
84 | 84 | fi |
85 | 85 |
|
86 | 86 | - name: Install Doctrine ORM dependency |
87 | 87 | run: | |
88 | | - if [ "${{ matrix.doctrine-orm }}" == "2.14" ]; then |
| 88 | + if [ "${{ matrix.doctrine-orm }}" = "2.14" ]; then |
89 | 89 | composer require doctrine/orm "~2.14" --prefer-dist --no-interaction --no-progress --with-all-dependencies |
90 | | - elif [ "${{ matrix.doctrine-orm }}" == "2.18" ]; then |
| 90 | + elif [ "${{ matrix.doctrine-orm }}" = "2.18" ]; then |
91 | 91 | composer require doctrine/orm "~2.18" --prefer-dist --no-interaction --no-progress --with-all-dependencies |
92 | | - elif [ "${{ matrix.doctrine-orm }}" == "3.0" ]; then |
| 92 | + elif [ "${{ matrix.doctrine-orm }}" = "3.0" ]; then |
93 | 93 | composer require doctrine/orm "~3.0" --prefer-dist --no-interaction --no-progress --with-all-dependencies |
94 | 94 | else |
95 | 95 | composer update --prefer-dist --no-interaction --no-progress |
|
0 commit comments