@hs-web-team/eslint-config-node 3.0.0-next.4 → 3.0.0-next.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,9 +11,9 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  strategy:
13
13
  matrix:
14
- node: [24]
14
+ node: [22, 24]
15
15
 
16
- name: Node ${{ matrix.node }} sample
16
+ name: Node ${{ matrix.node }} lint
17
17
  steps:
18
18
  - uses: actions/checkout@v4
19
19
  - name: Run unit tests
@@ -11,7 +11,7 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  strategy:
13
13
  matrix:
14
- node: [24]
14
+ node: [22, 24]
15
15
 
16
16
  name: Node ${{ matrix.node }} sample
17
17
  steps:
package/index.js CHANGED
@@ -9,7 +9,7 @@ export default defineConfig([
9
9
  plugins: { js },
10
10
  extends: ['js/recommended'],
11
11
  languageOptions: {
12
- globals: {...globals.node, ...globals.es2022},
12
+ globals: {...globals.node, ...globals.es2022, ...globals.jest},
13
13
  },
14
14
  ignores: [
15
15
  '**/node_modules/**',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hs-web-team/eslint-config-node",
3
- "version": "3.0.0-next.4",
3
+ "version": "3.0.0-next.6",
4
4
  "description": "HubSpot Marketing WebTeam ESLint rules for Node.js",
5
5
  "main": "index.js",
6
6
  "type": "module",