Skip to content

build(deps-dev): bump @typescript-eslint/parser from 6.2.1 to 6.3.0 (… #718

build(deps-dev): bump @typescript-eslint/parser from 6.2.1 to 6.3.0 (…

build(deps-dev): bump @typescript-eslint/parser from 6.2.1 to 6.3.0 (… #718

Workflow file for this run

name: release
on:
push:
branches:
- master
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
steps:
- name: Release Please
uses: google-github-actions/release-please-action@v3
with:
release-type: node
id: release
publish:
needs: release-please
runs-on: ubuntu-latest
if: ${{ needs.release-please.outputs.release_created }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: npm install
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}