Skip to content

Bump astro-icon from 1.1.0 to 1.1.1 #1029

Bump astro-icon from 1.1.0 to 1.1.1

Bump astro-icon from 1.1.0 to 1.1.1 #1029

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@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm install
- name: Run Astro build
run: npm run build