From afd50370c9999a2335340c6483b30bb7c3254b71 Mon Sep 17 00:00:00 2001 From: maxjackson2 Date: Mon, 16 Oct 2023 11:13:51 -0700 Subject: [PATCH] Created Workflow files and updated npmignore file --- .github/workflows/tsc.yml | 18 ++++++++++++++++++ .npmignore | 3 ++- 2 files changed, 20 insertions(+), 1 deletion(-) 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..40ff36d --- /dev/null +++ b/.github/workflows/tsc.yml @@ -0,0 +1,18 @@ +on: + push: + pull_request: + +jobs: + tsc: + name: tsc + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: install node v12 + uses: actions/setup-node@v1 + with: + node-version: 12 + - name: yarn install + run: yarn install + - name: tsc + uses: icrawl/action-tsc@v1 \ No newline at end of file diff --git a/.npmignore b/.npmignore index e831038..2969344 100644 --- a/.npmignore +++ b/.npmignore @@ -1 +1,2 @@ -src \ No newline at end of file +src +test \ No newline at end of file