Skip to content

perf: replace manual fireEvent loop with shared wrapFireEventMethods … #20

perf: replace manual fireEvent loop with shared wrapFireEventMethods …

perf: replace manual fireEvent loop with shared wrapFireEventMethods … #20

Workflow file for this run

name: '🚀 CD — Publish'
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
pull-requests: write
id-token: write
issues: write
jobs:
release-please:
runs-on: ubuntu-latest
timeout-minutes: 15
if: github.event.repository.fork == false
name: Release Please
steps:
- name: 🤝 Release Please
uses: googleapis/release-please-action@v4
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: ➕ Actions - Checkout
uses: actions/checkout@v4
if: ${{ steps.release.outputs.releases_created }}
- name: ➕ Actions - Setup Node.js
uses: actions/setup-node@v4
if: ${{ steps.release.outputs.releases_created }}
with:
check-latest: true
node-version: lts/*
registry-url: 'https://registry.npmjs.org'
- name: ➕ Cache dependencies
uses: actions/cache@v4
if: ${{ steps.release.outputs.releases_created }}
with:
path: ~/.npm
key: npm-linux-${{ hashFiles('package-lock.json') }}
restore-keys: npm-linux-
- name: 📦 Installing Dependencies
if: ${{ steps.release.outputs.releases_created }}
run: npm ci
- name: ✅ Validate
if: ${{ steps.release.outputs.releases_created }}
run: npm run check
- name: 🚀 Building
if: ${{ steps.release.outputs.releases_created }}
run: npm run build
- name: 📥 Publishing Package
if: ${{ steps.release.outputs.releases_created }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish --provenance --access public