Skip to content

Bump js-yaml from 3.15.0 to 3.15.1 #69

Bump js-yaml from 3.15.0 to 3.15.1

Bump js-yaml from 3.15.0 to 3.15.1 #69

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Babel ${{ matrix.babel }} / Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- { node: '22', babel: '7' }
- { node: '24', babel: '7' }
- { node: '24', babel: '8' }
- { node: '26', babel: '8' }
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}
- run: yarn install
# Test against the target Babel major (plugin supports both 7 and 8).
- run: yarn add --dev @babel/core@${{ matrix.babel }}
- run: yarn test