Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#13] Install Drupal with a local copy of this module #22

Draft
wants to merge 5 commits into
base: 8.x-1.x
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/test-php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test PHP

on:
push:
branches:
- 8.x-1.x
pull_request:
types: [opened, synchronize, reopened]

jobs:
test-php:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: docker://composer:latest
- name: Download Drupal
run: |
mkdir ../drupal
cd ../drupal
composer init -n --name=drupal/test_admin_ui --stability=dev
composer require drupal-composer/drupal-scaffold composer/installers
composer config repositories.drupal composer https://packages.drupal.org/8
composer config repositories.admin_ui '{"type": "path", "url": "../admin_ui", "symlink": true}'
composer require drupal/core:8.9.x-dev drupal/admin_ui:@dev
ls -lha modules/contrib