Skip to content

fix(deps): bump yaml from 2.3.4 to 2.4.0 #958

fix(deps): bump yaml from 2.3.4 to 2.4.0

fix(deps): bump yaml from 2.3.4 to 2.4.0 #958

Workflow file for this run

name: "build"
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20"]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check format and lint
run: yarn run format-check && yarn run lint
- name: Run tests
run: yarn test
- name: Build and package
run: yarn run build