Skip to content

build(deps-dev): bump eslint-plugin-jsdoc from 48.0.2 to 48.1.0 #11

build(deps-dev): bump eslint-plugin-jsdoc from 48.0.2 to 48.1.0

build(deps-dev): bump eslint-plugin-jsdoc from 48.0.2 to 48.1.0 #11

Workflow file for this run

name: Publish
on:
pull_request:
branches:
- main
types:
- closed
jobs:
build-and-publish:
if: contains(github.head_ref, 'release/') && contains(github.base_ref, 'main') && github.event.action == 'closed' && github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build and Publish to NPM
run: |
npx ts-node ./scripts/publish.ts
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}