Skip to content

Commit

Permalink
ci: 💚 add GitHub Actions workflow for publishing to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
lehuygiang28 committed Jul 27, 2024
1 parent ede6155 commit 8f30869
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Publish to npm

on:
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.com'

- name: 'Install dependencies'
run: npm ci

- name: 'Test'
run: npm run test

- name: 'Build'
run: npm run build

- name: 'Publish'
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 8f30869

Please sign in to comment.