Skip to content

Bump brace-expansion from 1.1.11 to 1.1.12 in /frontend #470

Bump brace-expansion from 1.1.11 to 1.1.12 in /frontend

Bump brace-expansion from 1.1.11 to 1.1.12 in /frontend #470

Workflow file for this run

name: Frontend Checks
on:
pull_request:
branches: ['main']
paths:
- 'frontend/**'
jobs:
frontend-checks:
name: Frontend Build, Lint, and Format
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Create .env file
uses: SpicyPizza/create-envfile@v2.0.3
with:
envkey_GITHUB_APP_ID: 1234
envkey_GITHUB_PRIVATE_KEY: "shh..."
envkey_GITHUB_INSTALLATION_ID: 1234
directory: frontend
- name: Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
- name: Install Dependencies
run: npm ci
- name: Run Build
run: npm run build
- name: Run Lint
run: npm run lint
- name: Run Format Check
run: npm run prettier