Skip to content

deps(deps): bump js-yaml from 5.2.0 to 5.2.1 #399

deps(deps): bump js-yaml from 5.2.0 to 5.2.1

deps(deps): bump js-yaml from 5.2.0 to 5.2.1 #399

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Use Node.js # will read version from .nvmrc
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Prettier
run: npm run prettier
- name: Run tests with coverage
run: npm run test:unit -- --coverage
- name: Upload coverage report
uses: actions/upload-artifact@v7
with:
name: coverage-report
path: coverage/
- name: Build
run: npm run build
- name: Smoke test
run: node dist/index.js --help