-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* drop lint * remove unsupported php versions * test updates with removal of not needed checks * bump node version for github workflows
- Loading branch information
Showing
28 changed files
with
2,940 additions
and
6,125 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
15 changes: 5 additions & 10 deletions
15
.github/workflows/ci-73-m24.yml → .github/workflows/ci-82.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,24 @@ | ||
name: Magento 2.4 CI | ||
name: Magento 2.4.6 CI with PHP 8.2 | ||
|
||
on: | ||
- push | ||
|
||
jobs: | ||
ci: | ||
runs-on: ubuntu-18.04 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Launch Magento test environment | ||
run: make up-73-m24 | ||
|
||
- name: Run install script | ||
run: >- | ||
docker-compose exec -T web bash -c 'dockerize -wait tcp://db:3306 -timeout 60m /usr/local/bin/install-magento' | ||
env: | ||
PHP: "82" | ||
COMPOSE_INTERACTIVE_NO_CLI: "1" | ||
|
||
- name: Set Base URL | ||
run: make fix-session-expire | ||
run: make up | ||
|
||
- uses: cypress-io/github-action@v2 | ||
with: | ||
project: ./test/e2e | ||
config: baseUrl=http://localhost:3000 | ||
env: | ||
CYPRESS_API_KEY: ${{ secrets.API_KEY }} | ||
CYPRESS_MAGENTO_VERSION: "2.4" |
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
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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
version: "3.0" | ||
services: | ||
es: | ||
image: library/elasticsearch:7.0.0 | ||
container_name: elasticsearch | ||
ports: | ||
- "9200:9200" | ||
- "9300:9300" | ||
environment: | ||
- bootstrap.memory_lock=true | ||
- discovery.type=single-node | ||
- "ES_JAVA_OPTS=-Xms2g -Xmx2g" | ||
- cluster.routing.allocation.disk.threshold_enabled=false | ||
ulimits: | ||
memlock: | ||
soft: -1 | ||
hard: -1 | ||
web: | ||
depends_on: | ||
- es | ||
build: | ||
context: "." | ||
dockerfile: "Dockerfile" | ||
args: | ||
BASE_IMAGE: idealpostcodes/magento-test:m2.4.6-php8.2 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.