chore(deps): bump the patch-dependencies group across 1 directory wit… #259
Workflow file for this run
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: Node CI Suite | |
| on: push | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| name: Node Tests | |
| services: | |
| redis: | |
| image: redis:latest | |
| ports: | |
| - 6379:6379 | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| check-latest: true | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - run: pnpm install --frozen-lockfile | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - run: pnpm run ci |