Skip to content

Add workflow for azd deployment on GitHub Actions and ADO #1

Add workflow for azd deployment on GitHub Actions and ADO

Add workflow for azd deployment on GitHub Actions and ADO #1

Workflow file for this run

name: Frontend linting
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run prettier on frontend
run: |
cd ./app/frontend
npm install
npx prettier --check .