Skip to content

Update repository references from a-ng-d to yelbolt #32

Update repository references from a-ng-d to yelbolt

Update repository references from a-ng-d to yelbolt #32

Workflow file for this run

name: Publish a new version on npm
on:
pull_request:
types: [closed]
branches:
- main
permissions:
contents: read
id-token: write
jobs:
npm:
name: Test, Build and Publish on npm
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Build module
run: npm run build
- name: Publish if version has been updated
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true