chore(deps): update drupal-solr digest to 6fe3df4 (#492) #782
This file contains hidden or 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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| 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 |