@codfish/actions-playground 4.7.1 → 4.9.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/.github/workflows/release.yml +1 -1
- package/.github/workflows/validate.yml +11 -1
- package/CODEOWNERS +8 -0
- package/Dockerfile +1 -1
- package/package.json +1 -1
- package/provisioning/Chart.yml +2 -2
|
@@ -16,8 +16,11 @@ jobs:
|
|
|
16
16
|
fetch-depth: 0
|
|
17
17
|
|
|
18
18
|
- uses: actions/setup-node@v3
|
|
19
|
+
id: setup-node
|
|
19
20
|
with:
|
|
21
|
+
cache: 'npm'
|
|
20
22
|
node-version-file: '.nvmrc'
|
|
23
|
+
registry-url: 'https://registry.npmjs.org'
|
|
21
24
|
|
|
22
25
|
- name: troubleshooting
|
|
23
26
|
env:
|
|
@@ -27,8 +30,15 @@ jobs:
|
|
|
27
30
|
git branch -a
|
|
28
31
|
echo "$GITHUB_CONTEXT"
|
|
29
32
|
|
|
33
|
+
- uses: actions/cache@v3
|
|
34
|
+
id: npm-cache
|
|
35
|
+
with:
|
|
36
|
+
path: node_modules
|
|
37
|
+
key: ${{ runner.os }}-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('**/package-lock.json') }}
|
|
38
|
+
|
|
30
39
|
- name: install dependencies
|
|
31
|
-
|
|
40
|
+
if: steps.npm-cache.outputs.cache-hit != 'true'
|
|
41
|
+
run: npm ci --prefer-offline --no-audit
|
|
32
42
|
|
|
33
43
|
- run:
|
|
34
44
|
npm run lint:commit -- --from="origin/${{ github.base_ref }}"
|
package/CODEOWNERS
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# About CODEOWNERS: Syntax and Example
|
|
2
|
+
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
|
|
3
|
+
#
|
|
4
|
+
# These owners will be the default owners for everything in
|
|
5
|
+
# the repo. Unless a later match takes precedence,
|
|
6
|
+
# @global-owner1 and @global-owner2 will be requested for
|
|
7
|
+
# review when someone opens a pull request.
|
|
8
|
+
* @codfish
|
package/Dockerfile
CHANGED
package/package.json
CHANGED
package/provisioning/Chart.yml
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
appVersion: 4.
|
|
1
|
+
appVersion: 4.9.0
|
|
2
2
|
name: actions-playground
|
|
3
|
-
version: 4.
|
|
3
|
+
version: 4.9.0
|