Skip to content

Commit

Permalink
feat(ci): adds chess ci configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
zakhaev26 committed Jan 6, 2024
1 parent df83673 commit f6c303a
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/check_chess_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build

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
bun install
- name: Build API
run: bun index.ts


3 changes: 2 additions & 1 deletion src/api/chess/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
console.log("Hello via Bun!");
console.log("Hello via Bun!");

0 comments on commit f6c303a

Please sign in to comment.