fix(health): add missing check for media conversion lambda #983
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NextJS Format Check | |
concurrency: | |
group: ${{ github.run_id }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- "develop" | |
- "master" | |
- "main" | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
prettier-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ github.token }} | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache: 'npm' | |
cache-dependency-path: app/web/package-lock.json | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: app/web | |
- name: Run prettier check | |
working-directory: app/web | |
run: npm run prettier:check |