Skip to content

Publish npm package

Publish npm package #2

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Publish npm package
on:
workflow_dispatch:
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/[email protected]
with:
version: 9.12.1
- uses: actions/[email protected]
with:
node-version: 22.9.0
registry-url: https://registry.npmjs.org/
cache: 'pnpm'
- run: npm install corepack -g
- run: corepack enable
- run: corepack install -g [email protected]
- run: pnpm install
- run: npx playwright install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}