Skip to content

🚑 fix: Move language details from the right column to the top in vuln… #580

🚑 fix: Move language details from the right column to the top in vuln…

🚑 fix: Move language details from the right column to the top in vuln… #580

Workflow file for this run

name: AuditForge CI
on:
push:
branches: [ "main", "development" ]
pull_request:
branches: [ "main", "development" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.15.0 ]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm install
working-directory: frontend
- name: Build
run: npm run build --if-present
working-directory: frontend
#- name: Lint
# run: npm run lint
# working-directory: frontend