@msobiecki/eslint-config 8.13.0 → 8.14.0
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.
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
name: Pull Request check
|
|
2
|
+
on:
|
|
3
|
+
pull_request:
|
|
4
|
+
branches:
|
|
5
|
+
- master
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
build:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
|
|
11
|
+
permissions:
|
|
12
|
+
packages: read
|
|
13
|
+
contents: read
|
|
14
|
+
|
|
15
|
+
strategy:
|
|
16
|
+
matrix:
|
|
17
|
+
node-version: [20.x]
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- uses: actions/checkout@v4
|
|
21
|
+
|
|
22
|
+
- name: Use Node ${{ matrix.node-version }}
|
|
23
|
+
uses: actions/setup-node@v4
|
|
24
|
+
env:
|
|
25
|
+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
26
|
+
with:
|
|
27
|
+
node-version: ${{ matrix.node-version }}
|
|
28
|
+
registry-url: https://npm.pkg.github.com
|
|
29
|
+
scope: "@msobiecki"
|
|
30
|
+
|
|
31
|
+
- name: Install dependencies
|
|
32
|
+
run: npm ci
|
|
33
|
+
env:
|
|
34
|
+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
35
|
+
|
|
36
|
+
- name: Run test
|
|
37
|
+
run: npm run test
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
# [8.14.0](https://github.com/msobiecki/eslint-config/compare/v8.13.0...v8.14.0) (2025-04-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* update ([dbd96bf](https://github.com/msobiecki/eslint-config/commit/dbd96bfe78588c6311bf591e2c3db3941657c20b))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
# [8.13.0](https://github.com/msobiecki/eslint-config/compare/v8.12.0...v8.13.0) (2025-04-17)
|
|
2
11
|
|
|
3
12
|
|
|
@@ -34,7 +43,3 @@
|
|
|
34
43
|
|
|
35
44
|
|
|
36
45
|
|
|
37
|
-
## [8.9.13](https://github.com/msobiecki/eslint-config/compare/v8.9.12...v8.9.13) (2025-03-23)
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|