Skip to content

Bump js-yaml from 3.14.1 to 3.14.2 #18

Bump js-yaml from 3.14.1 to 3.14.2

Bump js-yaml from 3.14.1 to 3.14.2 #18

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Enable Corepack
run: |
corepack enable && corepack prepare yarn@stable --activate
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Run tests
run: |
yarn install --immutable
yarn tsc
yarn test