@daiyam/artifact-lang-js 0.7.0 → 0.8.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daiyam/artifact-lang-js",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "The base configuration for my javascript projects",
5
5
  "author": {
6
6
  "name": "Baptiste Augrain",
@@ -31,5 +31,5 @@
31
31
  "project-template",
32
32
  "scaffold"
33
33
  ],
34
- "gitHead": "5fff6c16ace6953d55a3daee53ac9896ebf53914"
34
+ "gitHead": "42b37a747e74589c95b7f29be2d55fbd354ab086"
35
35
  }
@@ -13,6 +13,7 @@ rules:
13
13
  - fix
14
14
  - perf
15
15
  - refactor
16
+ - remodel
16
17
  - revert
17
18
  - style
18
19
  - test
@@ -0,0 +1,7 @@
1
+ version: 2
2
+ updates:
3
+ # Maintain dependencies for GitHub Actions
4
+ - package-ecosystem: "github-actions"
5
+ directory: "/"
6
+ schedule:
7
+ interval: "weekly"
@@ -0,0 +1,33 @@
1
+ name: Check PR
2
+ on:
3
+ pull_request:
4
+ branches: [ master ]
5
+ paths-ignore:
6
+ - '**/*.md'
7
+ jobs:
8
+ check:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout code
12
+ uses: actions/checkout@v6
13
+ with:
14
+ fetch-depth: 0
15
+ - name: Setup Node.js environment
16
+ uses: actions/setup-node@v6
17
+ with:
18
+ node-version-file: '.nvmrc'
19
+ - name: Install dependencies
20
+ run: |
21
+ npm ci
22
+ - name: Build
23
+ run: |
24
+ npm run build
25
+ - name: Test
26
+ run: |
27
+ npm run test
28
+ - name: Lint code
29
+ run: |
30
+ npm run lint
31
+ - name: Lint commit
32
+ run: |
33
+ npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
@@ -0,0 +1,14 @@
1
+ name: Lock Issues
2
+ on:
3
+ schedule:
4
+ - cron: '0 2 * * *'
5
+ jobs:
6
+ lock:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: dessant/lock-threads@v6
10
+ with:
11
+ github-token: ${{ github.token }}
12
+ issue-inactive-days: '90'
13
+ pr-inactive-days: '90'
14
+ log-output: true
@@ -0,0 +1,22 @@
1
+ name: Stale Issues
2
+ on:
3
+ schedule:
4
+ - cron: '0 1 * * *'
5
+ permissions:
6
+ issues: write
7
+ jobs:
8
+ stale:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/stale@v10
12
+ with:
13
+ days-before-stale: 720
14
+ days-before-close: 60
15
+ stale-issue-label: stale
16
+ operations-per-run: 1024
17
+ stale-issue-message: >
18
+ This issue has been automatically marked as stale. **If this issue is still affecting you, please leave any comment**, and we'll keep it open. If you have any new additional information, please include it with your comment!
19
+ close-issue-message: >
20
+ This issue has been closed due to inactivity, and will not be monitored. If this is a bug and you can reproduce this issue, please open a new issue.
21
+ exempt-issue-labels: discussion,never-stale
22
+ only-pr-labels: needs-information