Skip to content

Updating ci workflow #1

Updating ci workflow

Updating ci workflow #1

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Build and Push
steps:
- name: git-checkout
uses: actions/checkout@v4
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Typecheck
run: pnpm typecheck
- name: Build
run: pnpm build && pnpm build:react
- name: Test
run: pnpm test