From ee536800140a1704bef493c22b425fefcda25ddd Mon Sep 17 00:00:00 2001 From: Kurt Thiemann Date: Wed, 6 Nov 2024 17:58:42 +0100 Subject: [PATCH] add publish action --- .github/workflows/test-and-publish.yml | 40 ++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/test-and-publish.yml diff --git a/.github/workflows/test-and-publish.yml b/.github/workflows/test-and-publish.yml new file mode 100644 index 0000000..c7d223f --- /dev/null +++ b/.github/workflows/test-and-publish.yml @@ -0,0 +1,40 @@ +# 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://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages + +name: Node.js Package + +on: + pull_request: + push: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: '20.x' + - run: npm ci + - run: npm test + + publish-npm: + if: github.event_name == 'release' + needs: build + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: '20.x' + registry-url: https://registry.npmjs.org/ + - run: npm install -g npm + - run: npm ci + - run: npm publish --provenance --access public + env: + NODE_AUTH_TOKEN: ${{secrets.npm_token}}