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"