Skip to content

build(deps-dev): bump @angular-eslint/eslint-plugin-template from 17.0.1 to 17.2.1 #14

build(deps-dev): bump @angular-eslint/eslint-plugin-template from 17.0.1 to 17.2.1

build(deps-dev): bump @angular-eslint/eslint-plugin-template from 17.0.1 to 17.2.1 #14

Workflow file for this run

name: Publish
on:
pull_request:
branches:
- main
types:
- closed
jobs:
build-and-publish:
if: contains(github.head_ref, 'release/') && contains(github.base_ref, 'main') && github.event.action == 'closed' && github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build and Publish to NPM
run: |
npx ts-node ./scripts/publish.ts
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}