From 8f3086973bfcc50114f2a83798dc3a2f66bd7ad7 Mon Sep 17 00:00:00 2001 From: lehuygiang28 Date: Sat, 27 Jul 2024 21:25:13 +0700 Subject: [PATCH] ci: :green_heart: add GitHub Actions workflow for publishing to npm --- .github/workflows/publish.yml | 36 +++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..506b54c --- /dev/null +++ b/.github/workflows/publish.yml @@ -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 }}