Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .gitignore.artifact
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
/*

# Do not ignore required files.
!.env
!/config/
!/drush/
!/scripts/
!/vendor/
!composer.json
!.env

# Do not ignore webroot (manage Drupal Scaffold files using the composer.json)
!web
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
/*

# Do not ignore required files.
!.env
!/config/
!/drush/
!/scripts/
!/vendor/
!composer.json
!.env

# Do not ignore webroot (manage Drupal Scaffold files using the composer.json)
!web
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
/*

# Do not ignore required files.
!.env
!/config/
!/drush/
!/scripts/
!/vendor/
!composer.json
!.env

# Do not ignore webroot (manage Drupal Scaffold files using the composer.json)
!web
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
/*

# Do not ignore required files.
!.env
!/config/
!/drush/
!/scripts/
!/vendor/
!composer.json
!.env

# Do not ignore webroot (manage Drupal Scaffold files using the composer.json)
!web
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
/*

# Do not ignore required files.
!.env
!/config/
!/drush/
!/scripts/
!/vendor/
!composer.json
!.env

# Do not ignore webroot (manage Drupal Scaffold files using the composer.json)
!docroot
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
/*

# Do not ignore required files.
!.env
!/config/
!/drush/
!/scripts/
!/vendor/
!composer.json
!.env

# Do not ignore webroot (manage Drupal Scaffold files using the composer.json)
!docroot
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ protected function assertDeploymentFilesPresent(string $dir, string $webroot = '
$this->assertFileDoesNotExist($dir . '/.gitignore.artifact', '.gitignore.artifact should not exist in deployment');

// Required directories should exist.
$this->assertDirectoryExists($dir . '/drush', 'Drush directory should exist in deployment');
$this->assertDirectoryExists($dir . '/scripts', 'Scripts directory should exist in deployment');
$this->assertDirectoryExists($dir . '/vendor', 'Vendor directory should exist in deployment');

Expand Down
Loading