Skip to content

refactor: utilize useRuntimeConfig in bug report event handler #10

refactor: utilize useRuntimeConfig in bug report event handler

refactor: utilize useRuntimeConfig in bug report event handler #10

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm install
- name: Playground prepare
run: npm run dev:prepare
- name: Build
run: npm run prepack
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_REPOSITORY_OWNER: ${{ github.repository_owner }}