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
26 changes: 2 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,6 @@ jobs:
secrets: inherit

test:
needs: get-lts
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
fail-fast: false
steps:
- 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

get-lts:
needs: lint
runs-on: ubuntu-latest
steps:
- id: get
uses: msimerson/node-lts-versions@v1
outputs:
lts: ${{ steps.get.outputs.lts }}
active: ${{ steps.get.outputs.active }}
uses: NicTool/.github/.github/workflows/test.yml@main
secrets: inherit
7 changes: 2 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
name: publish

on:
push:
branches:
- main
paths:
- package.json
release:
types: [published]

env:
CI: true
Expand Down
2 changes: 1 addition & 1 deletion .release
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

### Unreleased

### [1.1.7] - 2026-03-13

- dep(eslint): update to v10
- deps: bump all to latest
- ci(test): use shared workflow

### [1.1.6] - 2025-10-06

- style: add prettier, update eslint to v9
Expand Down Expand Up @@ -184,4 +190,5 @@
[1.1.3]: https://github.com/NicTool/dns-zone/releases/tag/1.1.3
[1.1.4]: https://github.com/NicTool/dns-zone/releases/tag/1.1.4
[1.1.5]: https://github.com/NicTool/dns-zone/releases/tag/1.1.5
[1.1.6]: https://github.com/NicTool/dns-zone/releases/tag/1.1.6
[1.1.6]: https://github.com/NicTool/dns-zone/releases/tag/v1.1.6
[1.1.7]: https://github.com/NicTool/dns-zone/releases/tag/v1.1.7
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-zone/commits?author=msimerson">26</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-zone/commits?author=msimerson">27</a>) |
| :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |

<sub>this file is generated by [.release](https://github.com/msimerson/.release).
Expand Down
11 changes: 0 additions & 11 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,16 +1,5 @@
import globals from 'globals'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import js from '@eslint/js'
import { FlatCompat } from '@eslint/eslintrc'

const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all,
})

export default [
{
Expand Down
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nictool/dns-zone",
"version": "1.1.6",
"version": "1.1.7",
"description": "DNS Zone",
"main": "index.js",
"type": "module",
Expand Down Expand Up @@ -43,18 +43,20 @@
},
"homepage": "https://github.com/NicTool/dns-zone#readme",
"devDependencies": {
"eslint": "9.37.0",
"mocha": "11.7.4"
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"mocha": "11.7.5"
},
"dependencies": {
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"@nictool/dns-resource-record": "^1.2.4"
"command-line-usage": "^7.0.4",
"@nictool/dns-resource-record": "^1.3.1"
},
"prettier": {
"printWidth": 110,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}
}
Loading