Skip to content

added landing page and connecting buttons #40

added landing page and connecting buttons

added landing page and connecting buttons #40

Workflow file for this run

name: Build Test
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up cache
uses: actions/cache@v2
with:
path: ~/.bun
key: ${{ runner.os }}-bun-${{ hashFiles('**/lockfiles') }}
- name: Install dependencies
run: npm i -g bun; bun i
- name: Build
run: bun run build
- name: Test
if: ${{ success() }}
run: bun run test