Skip to content

Commit

Permalink
Release v1.0.13 (#32)
Browse files Browse the repository at this point in the history
- doc(README): update CI badge URL
- ci: update dependabot config to production only
  • Loading branch information
msimerson authored Jun 5, 2022
1 parent 0bc646b commit eb5e0e4
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 20 deletions.
7 changes: 3 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "npm"
directory: "/" # Location of package manifests
directory: "/"
schedule:
interval: "weekly"
allow:
- dependency-type: production
36 changes: 21 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

name: Tests
name: CI

on: [ push ]

Expand All @@ -8,28 +7,35 @@ env:

jobs:

ci-test:
lint:
uses: haraka/.github/.github/workflows/lint.yml@master

runs-on: ${{ matrix.os }}
# coverage:
# uses: haraka/.github/.github/workflows/coverage.yml@master
# secrets: inherit

test:
needs: [ lint, get-lts ]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
node-version: [ 14.x, 16.x ]
node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
fail-fast: false

steps:
- uses: actions/checkout@v2
name: Checkout Module
with:
fetch-depth: 1

- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
name: Node ${{ matrix.node-version }} on ${{ matrix.os }}
with:
node-version: ${{ matrix.node-version }}

- run: npm install
- run: npm test

- name: Run test suite
run: npm run test
get-lts:
runs-on: ubuntu-latest
steps:
- id: get
uses: msimerson/node-lts-versions@v1
outputs:
active: ${{ steps.get.outputs.active }}
lts: ${{ steps.get.outputs.lts }}
8 changes: 8 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
### Unreleased


### [1.0.13] - 2022-06-05

- doc(README): update CI badge URL
- ci: update dependabot config to production only


### [1.0.12] - 2022-06-05

- ci: update GHA workflow with shared
Expand Down Expand Up @@ -72,3 +79,4 @@


[1.0.12]: https://github.com/haraka/haraka-plugin-log-reader/releases/tag/1.0.12
[1.0.13]: https://github.com/haraka/haraka-plugin-log-reader/releases/tag/1.0.13
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "haraka-plugin-log-reader",
"version": "1.0.12",
"version": "1.0.13",
"description": "display log entries from haraka log files via HTTP",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit eb5e0e4

Please sign in to comment.