feat(core): upgrade Angular and related dependencies to version 21.0.0 #38
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish ngx-cookie-service-ssr to NPM | |
| on: | |
| push: | |
| ### Publish on new tag release | |
| tags: | |
| - v* | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: latest | |
| - name: Install NPM Dependencies | |
| run: npm i | |
| - name: Build project | |
| run: npm run build:ngx-cookie-service-ssr | |
| - name: Publish to NPM registry | |
| uses: JS-DevTools/npm-publish@v3 | |
| with: | |
| token: ${{ secrets.NPM_TOKEN }} | |
| package: dist/ngx-cookie-service-ssr/package.json | |
| access: public |