From 9815a0054f72358922e9a6c64c4161a4165c4960 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 4 Aug 2021 09:55:37 +0300 Subject: CI: split lint to a separate worflow (#416) --- .github/workflows/lint.yml | 31 +++++++++++++++++++++++++++++++ .github/workflows/test.yml | 4 ++-- 2 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..153ad6f --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,31 @@ +name: Lint + +on: + push: + branches-ignore: + - "dependabot/**" + pull_request: + +env: + FORCE_COLOR: 2 + NODE: 14 + +jobs: + lint: + runs-on: ubuntu-latest + + steps: + - name: Clone repository + uses: actions/checkout@v2 + + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: "${{ env.NODE }}" + cache: npm + + - name: Install npm dependencies + run: npm ci + + - name: Lint + run: npm run lint diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1729713..c2af35c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,5 +35,5 @@ jobs: - name: Run examples run: npm run examples - - name: Run tests - run: npm test + - name: Run mocha tests + run: npm run mocha -- cgit v1.2.3