Skip to content

chore(frontend): bump @types/marked from 5.0.2 to 6.0.0 in /services/frontend #612

chore(frontend): bump @types/marked from 5.0.2 to 6.0.0 in /services/frontend

chore(frontend): bump @types/marked from 5.0.2 to 6.0.0 in /services/frontend #612

Workflow file for this run

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