Skip to content

Build(deps): Bump js-yaml from 3.14.2 to 3.15.0 #189

Build(deps): Bump js-yaml from 3.14.2 to 3.15.0

Build(deps): Bump js-yaml from 3.14.2 to 3.15.0 #189

Workflow file for this run

name: PR Build and Test Plugins
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: corepack enable
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: yarn run format:ci
- run: yarn run lint
- run: yarn run test-coverage
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}