Skip to content

chore(deps): update actions/checkout digest to 0c366fd #8002

chore(deps): update actions/checkout digest to 0c366fd

chore(deps): update actions/checkout digest to 0c366fd #8002

Workflow file for this run

name: GraphQL Tests
on: [pull_request]
jobs:
build-graphql:
if: github.event.pull_request.head.repo.full_name == github.repository
environment: internal
strategy:
matrix:
php-version: ["8.2"]
magento-version: ["2.4.8-p3"]
runs-on: ubuntu-latest
timeout-minutes: 25
permissions:
contents: read
env:
PHP_VERSION: ${{ matrix.php-version }}
MAGENTO_VERSION: ${{ matrix.magento-version }}
ADMIN_USERNAME: ${{ secrets.MAGENTO_ADMIN_USERNAME }}
ADMIN_PASSWORD: ${{ secrets.MAGENTO_ADMIN_PASSWORD }}
DONATION_ACCOUNT: ${{ secrets.DONATION_ACCOUNT }}
ADYEN_MERCHANT: ${{ secrets.ADYEN_MERCHANT }}
ADYEN_API_KEY: ${{ secrets.ADYEN_API_KEY }}
ADYEN_CLIENT_KEY: ${{ secrets.ADYEN_CLIENT_KEY }}
DEPLOY_SAMPLEDATA: 1
steps:
- uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
- name: Install Magento
run: docker compose -f .github/docker-compose.yml run --rm web make magento
- name: Start web server in background
run: docker compose -f .github/docker-compose.yml up -d web
- name: Setup permissions
run: docker exec magento2-container make fs
- name: Check install
run: docker exec magento2-container make sys-check
- name: Install plugin
run: docker exec -u www-data magento2-container make plugin
- run: docker exec magento2-container /etc/init.d/cron stop
- name: Configure GraphQL requirements
run: docker exec magento2-container make setup-graphql
- name: Run GraphQL tests
run: docker exec magento2-container make graphql