Skip to content

chore(deps): bump the patch-dependencies group across 1 directory wit… #259

chore(deps): bump the patch-dependencies group across 1 directory wit…

chore(deps): bump the patch-dependencies group across 1 directory wit… #259

Workflow file for this run

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