Skip to content

chore(deps): Bump js-yaml from 4.1.0 to 4.1.1 #1746

chore(deps): Bump js-yaml from 4.1.0 to 4.1.1

chore(deps): Bump js-yaml from 4.1.0 to 4.1.1 #1746

Workflow file for this run

name: TypeScript tests and coverage
on:
push: { branches: [master] }
pull_request: { branches: [master] }
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn install
- run: yarn test --coverage
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}