Skip to content

Setup first iteration of search #18

Setup first iteration of search

Setup first iteration of search #18

Workflow file for this run

name: Build Frontend
on:
push:
branches: ['main']
paths:
- 'Frontend/**'
pull_request:
branches: ['main']
paths:
- 'Frontend/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: Frontend/package-lock.json
- run: npm ci
working-directory: ./Frontend
- run: npm run build:ssr
working-directory: ./Frontend