chore(frontend): bump @types/marked from 5.0.2 to 6.0.0 in /services/frontend #612
Workflow file for this run
This file contains hidden or 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: PR Checks | |
on: | |
pull_request: | |
branches: | |
- main | |
types: [opened, synchronize, reopened] | |
jobs: | |
validate: | |
name: Validate Changes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v5 | |
- name: Setup Node.js | |
uses: actions/setup-node@v5 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint Markdown | |
run: npm run lint:md | |
- name: Frontend Build | |
run: npm run build:frontend | |
- name: Backend Build | |
run: npm run build:backend | |
- name: Frontend Lint | |
run: npm run lint:frontend | |
- name: Backend Lint | |
run: npm run lint:backend | |
- name: Check for console.log in backend | |
run: npm run check:no-console:backend |