Skip to content

Commit

Permalink
ci: drop node 12 testing
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Apr 7, 2022
1 parent f7233fe commit 4d4e407
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
node-version: [ 12, 14, 16 ]
node-version: [ 14, 16 ]
fail-fast: false

steps:
Expand Down
2 changes: 1 addition & 1 deletion Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## 1.0.4 - 2022-04-07

- ci: restore to working order
-
- fix: reduce log noise from same_ipv4_network #35


## 1.0.3 - 2018-11-20
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "haraka-plugin-fcrdns",
"version": "1.0.3",
"version": "1.0.4",
"description": "Haraka plugin that checks a remote for Forward Confirmed reverse DNS",
"main": "index.js",
"scripts": {
"lint": "node node_modules/.bin/eslint *.js test/*.js",
"lintfix": "node node_modules/.bin/eslint --fix *.js test/*.js",
"test": "node node_modules/.bin/_mocha"
"lint": "npx eslint *.js test/*.js",
"lintfix": "npx eslint --fix *.js test/*.js",
"test": "npx mocha"
},
"repository": {
"type": "git",
Expand All @@ -24,7 +24,7 @@
},
"homepage": "https://github.com/haraka/haraka-plugin-fcrdns#readme",
"devDependencies": {
"eslint": ">=6",
"eslint": "^8",
"eslint-plugin-haraka": "*",
"haraka-test-fixtures": "*",
"mocha": "*"
Expand Down

0 comments on commit 4d4e407

Please sign in to comment.