Skip to content

display OIDC error message #617

display OIDC error message

display OIDC error message #617

Workflow file for this run

name: Lint frontend
on:
push:
branches:
- dev
- "release/**"
- "stable/**"
paths-ignore:
- "*.md"
- "LICENSE"
pull_request:
branches:
- dev
- "release/**"
- "stable/**"
paths-ignore:
- "*.md"
- "LICENSE"
jobs:
lint-web:
runs-on:
- codebuild-defguard-proxy-runner-${{ github.run_id }}-${{ github.run_attempt }}
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
submodules: recursive
- name: Install NodeJS
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 25
- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
with:
cache: true
version: 10
- name: Install deps
working-directory: web
run: pnpm install --frozen-lockfile
- name: Build translations
working-directory: web
run: pnpm dlx @inlang/paraglide-js compile --project ./project.inlang --outdir ./src/paraglide
- name: Lint
working-directory: web
run: pnpm lint
- name: Audit
working-directory: web
run: pnpm audit --prod --ignore-unfixable