Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/FUNDING.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ env:
jobs:
lint:
uses: NicTool/.github/.github/workflows/lint.yml@main

coverage:
uses: NicTool/.github/.github/workflows/coverage.yml@main
secrets: inherit
permissions:
contents: read

test:
uses: NicTool/.github/.github/workflows/test.yml@main
secrets: inherit
permissions:
contents: read
14 changes: 0 additions & 14 deletions .github/workflows/codeql.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Coverage

on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main]

jobs:
coverage:
uses: NicTool/.github/.github/workflows/coverage.yml@main
secrets: inherit
permissions:
contents: read
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ jobs:
publish:
uses: NicTool/.github/.github/workflows/publish.yml@main
secrets: inherit
permissions:
contents: read
packages: write
id-token: write
2 changes: 1 addition & 1 deletion .release
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).

### Unreleased

### [0.7.5] - 2026-04-20

- ci: separate coverage runner, trigger on push to main
- ci: remove codeql config, use default

### [0.7.4] - 2026-03-28

- dep(mocha): changed test runner from mocha to node:test
Expand Down Expand Up @@ -94,3 +99,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
[0.5.0]: https://github.com/NicTool/dns-nameserver/releases/tag/v0.5.0
[0.6.0]: https://github.com/NicTool/dns-nameserver/releases/tag/v0.6.0
[0.7.4]: https://github.com/NicTool/dns-nameserver/releases/tag/v0.7.4
[0.7.5]: https://github.com/NicTool/dns-nameserver/releases/tag/v0.7.5
2 changes: 1 addition & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This handcrafted artisanal software is brought to you by:

| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/NicTool/dns-nameserver/commits?author=msimerson">21</a>) |
| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/NicTool/dns-nameserver/commits?author=msimerson">22</a>) |
| :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |

<sub>this file is generated by [.release](https://github.com/msimerson/.release).
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,10 @@ Does the heavy lifting for `getZones`. Accepts a string and returns an object wh
- fix, feature, BREAKING CHANGE, build, chore, ci, docs, style, test
- [keep a changelog](https://keepachangelog.com/)

[![Module Tests](https://github.com/NicTool/dns-nameserver/actions/workflows/ci.yml/badge.svg)](https://github.com/NicTool/dns-nameserver/actions/workflows/ci.yml)
[![Coverage Status](https://coveralls.io/repos/github/NicTool/dns-nameserver/badge.svg?branch=master)](https://coveralls.io/github/NicTool/dns-nameserver?branch=master)
[![Tests][test-img]][test-uri]
[![Coverage Status][cov-img]][cov-uri]

[test-img]: https://github.com/NicTool/dns-nameserver/actions/workflows/ci.yml/badge.svg
[test-uri]: https://github.com/NicTool/dns-nameserver/actions/workflows/ci.yml
[cov-img]: https://coveralls.io/repos/github/NicTool/dns-nameserver/badge.svg
[cov-uri]: https://coveralls.io/github/NicTool/dns-nameserver
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nictool/dns-nameserver",
"version": "0.7.4",
"version": "0.7.5",
"description": "DNS Nameserver",
"main": "index.js",
"bin": {},
Expand All @@ -14,15 +14,16 @@
"CHANGELOG.md"
],
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint index.js lib test",
"lint:fix": "npx eslint --fix index.js lib test",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage",
"test:coverage:lcov": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info",
"versions": "npx npm-dep-mgr check",
"versions:fix": "npx npm-dep-mgr update",
"test:coverage": "npx c8 --reporter=text --reporter=text-summary npm test",
"format": "npm run prettier:fix && npm run lint:fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn"
"versions:fix": "npx npm-dep-mgr update"
},
"repository": {
"type": "git",
Expand Down
Loading