Skip to content

Installed module drupal/editor_paste_plain and updated theme drupal/g… #350

Installed module drupal/editor_paste_plain and updated theme drupal/g…

Installed module drupal/editor_paste_plain and updated theme drupal/g… #350

Workflow file for this run

name: PHP Composer
on:
push:
# Publish `master` as Docker `latest` image.
branches:
- master
- test
# Publish `v1.2.3` tags as releases.
tags:
- v*
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate composer.json and composer.lock
run: composer validate --strict --no-check-all
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress