This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
general user model and constants defined #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: BUILD_CHESS_API[RUNTIME:BUN] | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Bun Runtime | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: 1.0.20 | |
- name: Install deps | |
run: | | |
cd src/api/chess | |
echo pwd | |
bun install | |
- name: Build API | |
run: bun run src/api/chess/index.ts | |