Skip to content

build(deps-dev): bump js-yaml from 3.14.1 to 3.14.2 in the npm_and_yarn group across 1 directory #223

build(deps-dev): bump js-yaml from 3.14.1 to 3.14.2 in the npm_and_yarn group across 1 directory

build(deps-dev): bump js-yaml from 3.14.1 to 3.14.2 in the npm_and_yarn group across 1 directory #223

Workflow file for this run

name: Verify that dist is compiled
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run prepare
- name: Verify that `dist/index.js` is up to date
shell: bash
run: |
# `ncc` might produce output with mixed line endings
test -z "$(git diff -w HEAD | tee diff.txt)" || {
echo 'Files changed after `npm run package`'
cat diff.txt
exit 1
}