Skip to content

feat(angular): add the removeMetadataProperty function #29

feat(angular): add the removeMetadataProperty function

feat(angular): add the removeMetadataProperty function #29

Workflow file for this run

name: CI
on:
push:
branches:
- main
permissions: write-all
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm ci
- uses: nrwl/nx-set-shas@v4
# Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud
# - run: npx nx-cloud record -- echo Hello World
- run: npx nx affected -t lint test build
- run: git config --global user.email "[email protected]"
- run: git config --global user.name "IKatsuba"
- run: npx nx release -y
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
NPM_CONFIG_PROVENANCE: true
GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}