@daiyam/artifact-lang-js 0.13.2 → 0.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.
- package/branches/[#all:test]/configs/.github/workflows/#ci-master.yml.patch +21 -0
- package/branches/[#all:test]/configs/.github/workflows/#ci-pr.yml.patch +21 -0
- package/package.json +2 -2
- package/variants/20/configs/.editorconfig +1 -1
- package/variants/20/configs/.github/workflows/ci-master.yml +2 -6
- package/variants/20/configs/.github/workflows/ci-pr.yml +2 -6
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
diff --git a/packages/lang-js/variants/20/configs/.github/workflows/ci-master.yml b/packages/lang-js/branches/[#all:test]/configs/.github/workflows/ci-master.yml
|
|
2
|
+
index 7615a52..baccf99 100644
|
|
3
|
+
--- a/.github/workflows/ci-master.yml
|
|
4
|
+
+++ b/.github/workflows/ci-master.yml
|
|
5
|
+
@@ -1,4 +1,4 @@
|
|
6
|
+
-name: "CI - Master: Build & Lint"
|
|
7
|
+
+name: "CI - Master: Build, Test & Lint"
|
|
8
|
+
|
|
9
|
+
on:
|
|
10
|
+
push:
|
|
11
|
+
@@ -37,6 +37,10 @@ jobs:
|
|
12
|
+
run: |
|
|
13
|
+
npm run build
|
|
14
|
+
|
|
15
|
+
+ - name: Test
|
|
16
|
+
+ run: |
|
|
17
|
+
+ npm run test
|
|
18
|
+
+
|
|
19
|
+
- name: Lint code
|
|
20
|
+
run: |
|
|
21
|
+
npm run lint:all
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
diff --git a/packages/lang-js/variants/20/configs/.github/workflows/ci-pr.yml b/packages/lang-js/branches/[#all:test]/configs/.github/workflows/ci-pr.yml
|
|
2
|
+
index ab5ad4d..baccf99 100644
|
|
3
|
+
--- a/packages/lang-js/variants/20/configs/.github/workflows/ci-pr.yml
|
|
4
|
+
+++ b/packages/lang-js/branches/[#all:test]/configs/.github/workflows/ci-pr.yml
|
|
5
|
+
@@ -1,4 +1,4 @@
|
|
6
|
+
-name: "CI - Pull Request: Build & Lint"
|
|
7
|
+
+name: "CI - Pull Request: Build, Test & Lint"
|
|
8
|
+
|
|
9
|
+
on:
|
|
10
|
+
pull_request:
|
|
11
|
+
@@ -37,6 +37,10 @@ jobs:
|
|
12
|
+
run: |
|
|
13
|
+
npm run build
|
|
14
|
+
|
|
15
|
+
+ - name: Test
|
|
16
|
+
+ run: |
|
|
17
|
+
+ npm run test
|
|
18
|
+
+
|
|
19
|
+
- name: Lint code
|
|
20
|
+
run: |
|
|
21
|
+
npm run lint:all
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daiyam/artifact-lang-js",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.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": "
|
|
34
|
+
"gitHead": "19805320925f3b643ce19109bb14768660059465"
|
|
35
35
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
name: "CI - Master: Build
|
|
1
|
+
name: "CI - Master: Build & Lint"
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
@@ -14,7 +14,7 @@ jobs:
|
|
|
14
14
|
runs-on: ubuntu-latest
|
|
15
15
|
steps:
|
|
16
16
|
- name: Checkout code
|
|
17
|
-
uses: actions/checkout@
|
|
17
|
+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
18
18
|
with:
|
|
19
19
|
fetch-depth: 0
|
|
20
20
|
persist-credentials: false
|
|
@@ -37,10 +37,6 @@ jobs:
|
|
|
37
37
|
run: |
|
|
38
38
|
npm run build
|
|
39
39
|
|
|
40
|
-
- name: Test
|
|
41
|
-
run: |
|
|
42
|
-
npm run test
|
|
43
|
-
|
|
44
40
|
- name: Lint code
|
|
45
41
|
run: |
|
|
46
42
|
npm run lint:all
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
name: "CI - Pull Request: Build
|
|
1
|
+
name: "CI - Pull Request: Build & Lint"
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
pull_request:
|
|
@@ -14,7 +14,7 @@ jobs:
|
|
|
14
14
|
runs-on: ubuntu-latest
|
|
15
15
|
steps:
|
|
16
16
|
- name: Checkout code
|
|
17
|
-
uses: actions/checkout@
|
|
17
|
+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
18
18
|
with:
|
|
19
19
|
fetch-depth: 0
|
|
20
20
|
persist-credentials: false
|
|
@@ -37,10 +37,6 @@ jobs:
|
|
|
37
37
|
run: |
|
|
38
38
|
npm run build
|
|
39
39
|
|
|
40
|
-
- name: Test
|
|
41
|
-
run: |
|
|
42
|
-
npm run test
|
|
43
|
-
|
|
44
40
|
- name: Lint code
|
|
45
41
|
run: |
|
|
46
42
|
npm run lint:all
|