Skip to content
Snippets Groups Projects
Select Git revision
  • 911788a9463e1ae8d043f9b48ca7dac1e66085ee
  • master default protected
  • feat/npm-publish
  • feat/demo-deploy
  • change-demo-deploy
  • remove-smoke
  • feat/acceptance-tests
  • feature/deploy-composer.json
  • feature/mysql-bin-logs
  • skip-codecept-for-libs
  • include-composer-json
  • exclude-wp-assets
  • update_codecept_image
  • fix/silenced-copy
  • remove-free-translations
  • codeception-with-optional-step
  • improve-parallelization
  • linter-exit
  • change-images
  • fix/linter
  • globally-raise-mem-limit
  • no-symlink2
22 results

deploy.yml

Blame
  • lint.yml 690 B
    lint:
      image: gitlab.wpdesk.dev:5050/wpdesk/docker-tests/php-box:${PHP_IMAGE}
      needs:
        - prepare prefixed vendor
      stage: tests
      before_script:
        - !reference [.composer-auth, script]
        - composer install --no-dev
        - rm auth.json
        - phive install -g https://github.com/php-parallel-lint/PHP-Parallel-Lint/releases/download/v1.4.0/parallel-lint.phar --force-accept-unsigned
      script:
        - parallel-lint . --gitlab > lint-codequality.json || true
        - parallel-lint . --no-progress
      parallel:
        matrix:
          - PHP_IMAGE: ["8.3.2", "7.4.1"]
      artifacts:
        paths:
          - lint-codequality.json
        expire_in: 1 week
        reports:
          codequality: lint-codequality.json