chore(deps): bump axios from 1.15.2 to 1.16.1 #197
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: | |
| pull_request: | |
| push: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| strategy: | |
| matrix: | |
| node-version: [20, 22] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| cache-dependency-path: package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| # Dependabot dev-tooling bumps should validate cleanly without forcing | |
| # a package release changeset. | |
| - name: Require changeset for main-bound pull requests | |
| if: >- | |
| github.event_name == 'pull_request' && | |
| github.base_ref == 'main' && | |
| !startsWith(github.head_ref, 'changeset-release/') && | |
| matrix.node-version == 22 && | |
| !( | |
| startsWith(github.head_ref, 'dependabot/') && | |
| startsWith(github.event.pull_request.title, 'chore(deps-dev):') | |
| ) | |
| run: npm run release:check-changeset -- origin/${{ github.base_ref }} | |
| - name: Check formatting | |
| run: npm run format:check | |
| - name: Type check | |
| run: npm run typecheck | |
| - name: Lint | |
| run: npm run lint | |
| - name: Run tests | |
| run: npm run test:ci | |
| - name: Build | |
| run: npm run build | |
| - name: Test package installation | |
| if: matrix.node-version == 22 | |
| run: | | |
| npm pack | |
| npm install -g *.tgz |