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
|
container.image: node:20-bookworm
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
name: Get stuff
|
- run: npm install && npm run build
|
||||||
- run: bing bong?
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
path: .vercel/output/static
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
||||||
# build output
|
# build output
|
||||||
dist/
|
dist/
|
||||||
|
.vercel/
|
||||||
|
|
||||||
# dependencies
|
# dependencies
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
---
|
---
|
||||||
interface Props {
|
|
||||||
title: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
const { title } = Astro.props;
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<p class="text-bold pt-5 text-center text-2xl">
|
<p class="text-bold pt-5 text-center text-2xl">
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
---
|
---
|
||||||
import { AppConfig } from '@/utils/AppConfig';
|
import { AppConfig } from '@/utils/AppConfig';
|
||||||
import Base from '@/layouts/Base.astro';
|
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 Section from '@/components/Section.astro';
|
||||||
import Subheading from '@/components/Subheading.astro';
|
import Subheading from '@/components/Subheading.astro';
|
||||||
import ServSection from '@/components/ServSection.astro';
|
import ServSection from '@/components/ServSection.astro';
|
||||||
|
|
Loading…
Add table
Reference in a new issue