will he build?
This commit is contained in:
parent
643a24273c
commit
97b166401e
4 changed files with 5 additions and 8 deletions
|
@ -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
1
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
|||
# build output
|
||||
dist/
|
||||
.vercel/
|
||||
|
||||
# dependencies
|
||||
node_modules/
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
---
|
||||
interface Props {
|
||||
title: string;
|
||||
}
|
||||
|
||||
const { title } = Astro.props;
|
||||
---
|
||||
|
||||
<p class="text-bold pt-5 text-center text-2xl">
|
||||
|
|
|
@ -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';
|
||||
|
|
Loading…
Add table
Reference in a new issue