diff --git a/.github/workflows/blazebuild.yml b/.github/workflows/blazebuild.yml new file mode 100644 index 000000000..9326809e2 --- /dev/null +++ b/.github/workflows/blazebuild.yml @@ -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