Skip to content

add welcome event dates #114

add welcome event dates

add welcome event dates #114

Workflow file for this run

name: Check
on: pull_request
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.2.4"
- run: bun install --frozen-lockfile
- run: bun check
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.2.4"
- run: bun install --frozen-lockfile
- uses: actions/cache@v4
with:
key: ${{ runner.os }}-astro-build
path: |
.astro
dist
node_modules/.astro/assets
restore-keys: ${{ runner.os }}-astro-build
- run: bun run build