build(deps): bump axios from 1.7.9 to 1.18.0 #1684
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: next-drupal | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18.19.x' | |
| - name: Install packages | |
| run: yarn install --frozen-lockfile | |
| - name: Run unit tests (PR) | |
| if: github.event_name == 'pull_request' | |
| # Skip integration test files that exercise a live Drupal instance. | |
| # Tracking removal of the live dependency in .claude/plans/. | |
| run: | | |
| yarn workspace next-drupal test \ | |
| --testPathIgnorePatterns="NextDrupal/(crud-methods|resource-methods|basic-methods)|NextDrupalPages/(resource-methods|pages-router-methods)" \ | |
| --coverageThreshold='{}' | |
| env: | |
| # Placeholders only — unit tests mock fetch. The test utils | |
| # construct a Drupal client at module load and require these | |
| # to be present (not valid). | |
| DRUPAL_BASE_URL: http://localhost | |
| DRUPAL_USERNAME: test | |
| DRUPAL_PASSWORD: test | |
| DRUPAL_CLIENT_ID: test | |
| DRUPAL_CLIENT_SECRET: test | |
| - name: Run all tests (main) | |
| if: github.event_name == 'push' | |
| run: yarn workspace next-drupal test | |
| env: | |
| DRUPAL_BASE_URL: ${{ secrets.DRUPAL_BASE_URL }} | |
| DRUPAL_USERNAME: ${{ secrets.DRUPAL_USERNAME }} | |
| DRUPAL_PASSWORD: ${{ secrets.DRUPAL_PASSWORD }} | |
| DRUPAL_CLIENT_ID: ${{ secrets.DRUPAL_CLIENT_ID }} | |
| DRUPAL_CLIENT_SECRET: ${{ secrets.DRUPAL_CLIENT_SECRET }} |