chore(deps): update all non-major dependencies #799
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: ci | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🛎 | |
| uses: actions/checkout@master | |
| - name: Setup DDEV | |
| uses: ddev/github-action-setup-ddev@v1 | |
| with: | |
| autostart: false | |
| - name: Start ddev | |
| run: ddev start | |
| - name: Validate composer.json 🔍 | |
| run: ddev composer validate | |
| - name: Install Drupal 👨🏻💻 | |
| run: ddev drupal-install | |
| # - name: Run Drupal tests | |
| # run: ddev drupal-tests | |
| # lint: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Checkout 🛎 | |
| # uses: actions/checkout@master | |
| ## https://github.com/guix77/phpcs-drupal-action#installation | |
| # - name: Drupal coding standards | |
| # uses: guix77/phpcs-drupal-action@v1.0.0 |