Skip to content

fix(container-assist): stop managed namespace update command from overwriting existing annotations/labels #1421

fix(container-assist): stop managed namespace update command from overwriting existing annotations/labels

fix(container-assist): stop managed namespace update command from overwriting existing annotations/labels #1421

Workflow file for this run

name: Prettier Check
on:
pull_request:
paths:
- '**/*.ts'
- '**/*.tsx'
push:
branches:
- main
permissions:
contents: read
jobs:
prettier-check:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
deployments: read
packages: none
steps:
- name: Checkout repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '20'
- name: Install dependencies
run: |
npm run install:all
- name: Run Prettier check
run: npx prettier --check "**/*.{ts,tsx,json,css,md}"