Skip to content

Commit

Permalink
ci: add blazebuild build workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Ar Rakin <[email protected]>
  • Loading branch information
virtual-designer authored Jul 8, 2024
1 parent e7de72f commit 1f689fe
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/blazebuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build BlazeBuild

on: [push, pull_request]

jobs:
build:
runs-on: [ubuntu-latest, macos-latest, windows-latest]

defaults:
run:
working-directory: blazebuild

steps:
- uses: actions/checkout@4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '22.4.0'

- name: Install Dependencies
run: npm install -D

- name: Build with TypeScript
run: npx tsc

0 comments on commit 1f689fe

Please sign in to comment.