diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6c46bc9..4e1cbdf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16.x' + node-version: '18.x' registry-url: 'https://registry.npmjs.org' - run: npm ci - run: npm publish diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c567983..48c5d3f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [ 16.x, 18.x ] + node-version: [ 18.x ] steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} diff --git a/README.md b/README.md index 5430bb1..8709a31 100644 --- a/README.md +++ b/README.md @@ -62,4 +62,4 @@ Version [2.0.0](https://github.com/SnaBe/node-unusual-effects/releases/tag/v2.0. [MIT](LICENSE) -Copyright 2023, Simon Sørensen +Copyright 2024, Simon Sørensen diff --git a/eslint.config.js b/eslint.config.js index 3bcdd50..32c4658 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -3,7 +3,7 @@ module.exports = [ "rules": { "linebreak-style": [ "error", - "windows" + "unix" ], "quotes": [ "error", diff --git a/package.json b/package.json index 2a23415..ca0ab1d 100644 --- a/package.json +++ b/package.json @@ -37,6 +37,6 @@ "typescript": "^5.4.4" }, "engines": { - "node": ">=16.0.0" + "node": ">=18.0.0" } }