Skip to content

chore(deps-dev): bump js-yaml from 3.14.1 to 3.14.2 #13

chore(deps-dev): bump js-yaml from 3.14.1 to 3.14.2

chore(deps-dev): bump js-yaml from 3.14.1 to 3.14.2 #13

Workflow file for this run

name: Proxy Server CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x, latest]
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test -- --ci
- name: Upload test results (optional)
if: failure()
uses: actions/upload-artifact@v4
with:
name: jest-results-${{ matrix.node-version }}
path: jest-results.json
if-no-files-found: ignore