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