Skip to content

chore(deps): bump js-yaml in the npm_and_yarn group across 1 director… #17

chore(deps): bump js-yaml in the npm_and_yarn group across 1 director…

chore(deps): bump js-yaml in the npm_and_yarn group across 1 director… #17

Workflow file for this run

name: Publish
on:
push:
branches: [main, release/**]
jobs:
run-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: bash .ci/runChecks.sh
publish-npm:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: current
registry-url: https://registry.npmjs.org
- run: npm ci
- run: npm run build
- run: npx enhanced-publish --if-possible --use-preid-as-tag
needs: ["run-checks"]