From 971ecf5d25cd18a3d195ef719e054148c11197e0 Mon Sep 17 00:00:00 2001 From: tobspr <> Date: Thu, 14 May 2020 08:57:52 +0200 Subject: [PATCH] Add github action --- .github/workflows/ci-workflow.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci-workflow.yml diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml new file mode 100644 index 00000000..01251b96 --- /dev/null +++ b/.github/workflows/ci-workflow.yml @@ -0,0 +1,18 @@ +name: workflow +on: + push: + paths: + - src/js/* +jobs: + job: + runs-on: ubuntu-latest + timeout-minutes: 3 + steps: + - uses: actions/checkout@v1 + - name: Prepare + run: npm ci + - name: Lint + uses: mooyoul/tslint-actions@v1.1.1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + pattern: "*.ts"