Skip to content

chore: tweaking issue-comment to get it to work #1

chore: tweaking issue-comment to get it to work

chore: tweaking issue-comment to get it to work #1

Workflow file for this run

name: Release
on:
push:
branches:
- release
permissions:
contents: write
issues: write
pull-requests: write
packages: write
env:
PNPM_VERSION: 10.2.1
NODE_VERSION: 23
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Install browsers
run: cd packages/agent && pnpm exec playwright install --with-deps chromium
- name: Test
run: pnpm test
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: pnpm semantic-release