From 5fae5ae7df62fd02a099df5c0ea91cc652a67632 Mon Sep 17 00:00:00 2001 From: Jonas <77726472+kobolol@users.noreply.github.com> Date: Sun, 7 Apr 2024 12:50:58 +0200 Subject: [PATCH] Create tsc.yml --- .github/workflows/tsc.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/tsc.yml diff --git a/.github/workflows/tsc.yml b/.github/workflows/tsc.yml new file mode 100644 index 0000000..2ab1730 --- /dev/null +++ b/.github/workflows/tsc.yml @@ -0,0 +1,20 @@ +name: TypeScript Build + +on: + push: + branches: + - main # Adjust branch name as needed + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Install dependencies + run: npm install + + - name: Run TypeScript compilation + run: npm run build # Or replace with your build command