From 538f759fa0c2eb306fd35e01c84f55a03e8c3984 Mon Sep 17 00:00:00 2001 From: ThinLiquid Date: Mon, 16 Oct 2023 15:53:05 +0100 Subject: [PATCH] =?UTF-8?q?[=F0=9F=92=9A]=20Added=20CI=20for=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..095da88 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,15 @@ +name: build +on: + push: + branches: [master] + pull_request: + branches: [master] +jobs: + ts-standard: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.1.0 + - name: Install dependencies + run: npm i + - name: Run ts-standard test + run: npm run build \ No newline at end of file