Skip to content

Bump bootstrap from 5.3.1 to 5.3.2 #519

Bump bootstrap from 5.3.1 to 5.3.2

Bump bootstrap from 5.3.1 to 5.3.2 #519

Workflow file for this run

#
# Builds the web application
#
name: Build Web App
on: [push, pull_request]
jobs:
build:
name: Build frontend
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
permissions:
actions: read
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install dependencies
run: npm install
- name: Run Astro build
run: npm run build