From 0ab91f0a47a870a9dfe9a12d63af51e1edd7cd62 Mon Sep 17 00:00:00 2001 From: pho-phoenix Date: Tue, 20 Aug 2024 17:50:58 +0200 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000000..3195180847 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,18 @@ +name: Check ts + +on: [pull_request] + +jobs: + ts-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Get Node.js + uses: actions/setup-node@v1 + with: + node-version: '16' + - run: npm ci + - name: Checking adapters + run: npm run ts-check + - name: Checking cli + run: npm run ts-check-cli