Skip to content

AzAuthJS v1.1.0

AzAuthJS v1.1.0 #1

Workflow file for this run

name: Publish
on:
release:
types: [published]
permissions:
contents: read
id-token: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
registry-url: https://registry.npmjs.org
package-manager-cache: false
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint && npm run format:check
- name: Build
run: npm run build
- name: Publish to NPM
run: npm publish --access public