Skip to content

build(deps): bump js-yaml from 4.1.1 to 4.3.0 #835

build(deps): bump js-yaml from 4.1.1 to 4.3.0

build(deps): bump js-yaml from 4.1.1 to 4.3.0 #835

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
permissions: {}
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test -- --reporter=github-actions