Skip to content

Bump docker/setup-buildx-action from 3.11.1 to 3.12.0 #1398

Bump docker/setup-buildx-action from 3.11.1 to 3.12.0

Bump docker/setup-buildx-action from 3.11.1 to 3.12.0 #1398

Workflow file for this run

name: Prettier Check
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
- "feature/**"
jobs:
run-prettier-check:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 18.17.1
cache: "npm"
cache-dependency-path: ./angular-client/package-lock.json
- name: Install modules
working-directory: ./angular-client
run: npm install
- name: Run prettier check
working-directory: ./angular-client
run: npm run prettier-check