From e9d8a486b9cc93cebd0e708e267231409239e969 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Wed, 10 Jun 2020 19:45:55 +0200 Subject: [PATCH] Update workflows --- .github/workflows/lint.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index a0bd92d..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: lint - -on: - pull_request: - paths: - - '.github/workflows/lint.yml' - - 'src/*' - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - - name: Checkout - uses: actions/checkout@v2 - - - name: Set up Node - uses: actions/setup-node@v1 - - - name: Setup TS - run: npm install tslint typescript -g - - - name: Lint check - run: tslint './src/*.ts'