Skip to content

build(deps): Bump js-yaml from 3.14.1 to 3.15.1 #251

build(deps): Bump js-yaml from 3.14.1 to 3.15.1

build(deps): Bump js-yaml from 3.14.1 to 3.15.1 #251

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- master
- v3-beta
- next
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 22.x, 24.x ]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Cache dependencies
uses: actions/cache@v5
with:
path: |
~/.cache/yarn
node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Packages
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn run test && yarn run perf
env:
CI: true
FORCE_COLOR: 1