chore(deps): update wordpress-base digest to 963e4cf #566
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Drupal test routine | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'new_repos' | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
test-suite: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
- name: Report versions | |
run: | | |
docker version | |
node -v | |
yarn -v | |
- name: Update git submodules | |
run: | | |
git submodule sync | |
git submodule update --init | |
- name: Install test harness | |
run: | | |
yarn install | |
- name: Run simple docker-compose tests | |
run: | | |
yarn test:simple | |
- name: Run advanced docker-compose tests | |
run: | | |
yarn test:advanced |