-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from haraka/modernize
replace appveyor & Travis with Github Actions
- Loading branch information
Showing
11 changed files
with
305 additions
and
209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Plugin Tests - Windows | ||
|
||
on: [ push, pull_request ] | ||
|
||
jobs: | ||
|
||
ci-test-win: | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ windows-latest ] | ||
node-version: [12.x, 14.x] | ||
fail-fast: false | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
name: Checkout Plugin | ||
with: | ||
fetch-depth: 1 | ||
|
||
- uses: actions/setup-node@v1 | ||
name: Use Node.js ${{ matrix.node-version }} | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: npm install and test | ||
run: | | ||
npm install | ||
npm run test | ||
env: | ||
CI: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Plugin Tests | ||
|
||
on: [ push, pull_request ] | ||
|
||
jobs: | ||
|
||
ci-test: | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest ] | ||
node-version: [12.x, 14.x] | ||
fail-fast: false | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
name: Checkout Plugin | ||
with: | ||
fetch-depth: 1 | ||
|
||
- uses: actions/setup-node@v1 | ||
name: Use Node.js ${{ matrix.node-version }} | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: npm install | ||
run: npm install | ||
|
||
- name: Run test suite | ||
run: npm run test | ||
|
||
env: | ||
CI: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
on: [ pull_request ] | ||
|
||
name: Test Coverage | ||
|
||
jobs: | ||
|
||
coverage: | ||
name: Codecov | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@master | ||
name: Checkout Plugin | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Use Node.js 12 | ||
uses: actions/setup-node@master | ||
with: | ||
node-version: 12.x | ||
|
||
- name: install, run | ||
run: | | ||
npm install | ||
npm install --no-save nyc codecov | ||
npm run cover | ||
- name: Coveralls | ||
uses: coverallsapp/github-action@master | ||
with: | ||
github-token: ${{ secrets.github_token }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Lint | ||
|
||
on: [ push, pull_request ] | ||
|
||
jobs: | ||
|
||
lint: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [ 12.x ] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
name: Checkout Plugin | ||
with: | ||
fetch-depth: 1 | ||
|
||
- uses: actions/setup-node@v1 | ||
name: Use Node.js ${{ matrix.node-version }} | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: npm install | ||
run: npm install | ||
|
||
- name: Lint using eslint | ||
run: npm run lint | ||
|
||
env: | ||
CI: true |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,30 @@ | ||
|
||
## 1.1.3 - 2018-05-11 | ||
### 1.1.4 - 2020-12-14 | ||
|
||
- packaging updates | ||
- replace Travis CI & AppVeyor for GH Actions | ||
|
||
|
||
### 1.1.3 - 2018-05-11 | ||
|
||
- change unicode regexps to not escape latin chars #15 | ||
|
||
|
||
## 1.1.2 - 2017-06-25 | ||
### 1.1.2 - 2017-06-25 | ||
|
||
- remove dev dependency versions | ||
|
||
## 1.1.1 | ||
|
||
### 1.1.1 | ||
|
||
- Fix a bug when using the constructor to generate an address | ||
|
||
## 1.1.0 | ||
|
||
### 1.1.0 | ||
|
||
- support IDN email addresses | ||
|
||
## 1.0.0 - 2016-12-08 | ||
|
||
### 1.0.0 - 2016-12-08 | ||
|
||
- replaced null host or user values with empty strings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.