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
committerXhmikosR <xhmikosr@gmail.com>2021-09-01 15:01:19 +0300
commit19b048ab0f53a230135987729f17cf51894f6478 (patch)
treefcfcfb635654402b1f038622b83d0200d7003099
parent454f70db45a8e93d647ecf3aba9ef1142b5bc94d (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 ec4ab41..01c178e 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -31,5 +31,5 @@ jobs:
- name: Run examples
run: npm run examples
- - name: Run tests
- run: npm test
+ - name: Run mocha tests
+ run: npm run mocha