Skip to content

Merge pull request #35 from MakeMyClip/fix/ui-op-picker-form #4

Merge pull request #35 from MakeMyClip/fix/ui-op-picker-form

Merge pull request #35 from MakeMyClip/fix/ui-op-picker-form #4

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write # write CHANGELOG, create GitHub releases
issues: write # comment on released issues
pull-requests: write # comment on released PRs
id-token: write # npm Trusted Publishing via OIDC
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Test
run: pnpm test
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: pnpm exec semantic-release