will he build?

This commit is contained in:
matt c 2024-10-17 15:56:13 +01:00
parent 643a24273c
commit 97b166401e
4 changed files with 5 additions and 8 deletions

View file

@ -5,5 +5,7 @@ jobs:
container.image: node:20-bookworm
steps:
- uses: actions/checkout@v3
name: Get stuff
- run: bing bong?
- run: npm install && npm run build
- uses: actions/upload-artifact@v3
with:
path: .vercel/output/static

1
.gitignore vendored
View file

@ -1,5 +1,6 @@
# build output
dist/
.vercel/
# dependencies
node_modules/

View file

@ -1,9 +1,5 @@
---
interface Props {
title: string;
}
const { title } = Astro.props;
---
<p class="text-bold pt-5 text-center text-2xl">

View file

@ -1,8 +1,6 @@
---
import { AppConfig } from '@/utils/AppConfig';
import Base from '@/layouts/Base.astro';
import Hero from '@/components/Hero.astro';
import LatestPosts from '@/components/LatestPosts.astro';
import Section from '@/components/Section.astro';
import Subheading from '@/components/Subheading.astro';
import ServSection from '@/components/ServSection.astro';