Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2021-08-04 09:55:37 +0300
committerGitHub <noreply@github.com>2021-08-04 09:55:37 +0300
commit9815a0054f72358922e9a6c64c4161a4165c4960 (patch)
tree9f78bcb30001ceda557ce53244a632b6478fe4d0
parent93bf0a949ccc0c02c9fc76e63e29d9a97cfd7d7c (diff)
CI: split lint to a separate worflow (#416)
-rw-r--r--.github/workflows/lint.yml31
-rw-r--r--.github/workflows/test.yml4
2 files changed, 33 insertions, 2 deletions
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