Skip to content

Commit 6a0459d

Browse files
authored
Create main.yml
1 parent 5e0d5db commit 6a0459d

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/main.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2+
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3+
4+
name: Publish npm package
5+
6+
on:
7+
workflow_dispatch:
8+
9+
jobs:
10+
publish-npm:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/[email protected]
15+
with:
16+
node-version: 22.9.0
17+
registry-url: https://registry.npmjs.org/
18+
cache: 'pnpm'
19+
- run: npm install corepack -g
20+
- run: corepack enable
21+
- run: corepack install -g [email protected]
22+
- run: pnpm install
23+
- run: npx playwright install
24+
- run: npm publish
25+
env:
26+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

0 commit comments

Comments
 (0)