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-04-27 13:46:57 +0300
committerXhmikosR <xhmikosr@gmail.com>2021-07-01 14:08:08 +0300
commit8336aa514a00335fd2cc9ef185a7b503ccd8600e (patch)
tree7f283be9f731ef107fe491d92141ac97f7074eb6
parent63076b32b14a7baa722bb254e83cb025e6ca750c (diff)
Drop Node.js 10.x, add Node.js 16 on CI
-rw-r--r--.github/workflows/test.yml2
-rw-r--r--package.json3
2 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index b07ac4b..290cf63 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- node: [10, 12, 14]
+ node: [12, 14, 16]
steps:
- name: Clone repository
diff --git a/package.json b/package.json
index 67acb46..16e9494 100644
--- a/package.json
+++ b/package.json
@@ -35,7 +35,7 @@
"postcss"
],
"engines": {
- "node": ">=10"
+ "node": ">=12"
},
"scripts": {
"mocha": "mocha",
@@ -89,6 +89,7 @@
"rules": {
"ava/no-import-test-files": "off",
"import/extensions": "off",
+ "node/prefer-promises/fs": "off",
"promise/prefer-await-to-then": "off",
"unicorn/no-array-for-each": "off",
"unicorn/prevent-abbreviations": "off"