qa-control 0.6.10 → 0.6.11

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,11 @@
1
+ name: Build and test
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
+ branches: [master]
8
+
9
+ jobs:
10
+ ci:
11
+ uses: codenautas/.github/.github/workflows/node-build-and-test.yaml@v1
@@ -0,0 +1,16 @@
1
+ name: Publish from Tag
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - 'v[0-9]+.[0-9]*'
7
+
8
+ permissions:
9
+ id-token: write
10
+ contents: read
11
+
12
+ jobs:
13
+ publish:
14
+ uses: codenautas/.github/.github/workflows/npm-publish-from-tag.yaml@v1
15
+ with:
16
+ node_version: '24'
@@ -0,0 +1,11 @@
1
+ name: QA control
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
+ branches: [master]
8
+
9
+ jobs:
10
+ qa:
11
+ uses: codenautas/.github/.github/workflows/qa-control.yaml@v1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "qa-control",
3
3
  "description": "QA control of things that nobody controls",
4
- "version": "0.6.10",
4
+ "version": "0.6.11",
5
5
  "author": "Codenautas <codenautas@googlegroups.com>",
6
6
  "license": "MIT",
7
7
  "repository": "codenautas/qa-control",
@@ -59,7 +59,8 @@
59
59
  "all": "npm test && npm run test-cov && npm run report && npm run qac"
60
60
  },
61
61
  "files": [
62
- "bin"
62
+ "bin",
63
+ ".github/workflows"
63
64
  ],
64
65
  "qa-control": {
65
66
  "package-version": "0.3.0",