Skip to content

Support Angular 19 and even further beyond! #3

Support Angular 19 and even further beyond!

Support Angular 19 and even further beyond! #3

Workflow file for this run

name: Publish
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm publish --provenance --access public dist/packages/ngx-clarity/
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}