From c84be1e080be8a471da5d3f117b9cb813e0d3b8a Mon Sep 17 00:00:00 2001 From: I569996 Date: Sun, 15 Jun 2025 11:29:30 +0200 Subject: [PATCH] Added ts tester --- .github/workflows/testing_ts.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/testing_ts.yaml diff --git a/.github/workflows/testing_ts.yaml b/.github/workflows/testing_ts.yaml new file mode 100644 index 0000000..d92d131 --- /dev/null +++ b/.github/workflows/testing_ts.yaml @@ -0,0 +1,23 @@ +name: Typescript Tests + +on: + workflow_call: + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: 18 + + - name: Install dependencies + run: npm i + + - name: Run tests + run: npm run test