@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.
@@ -123,7 +123,7 @@ jobs:
123
123
  '@semantic-release/github'
124
124
  ]
125
125
  env:
126
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
126
+ GITHUB_TOKEN: ${{ secrets.SEMANTIC_GH_TOKEN }}
127
127
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
128
128
 
129
129
  - shell: bash
@@ -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
- run: npm ci
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
@@ -10,7 +10,7 @@ RUN npm ci
10
10
  COPY ./src ./src
11
11
  COPY ./public ./public
12
12
 
13
- ENV RELEASE_VERSION=4.7.1
13
+ ENV RELEASE_VERSION=4.9.0
14
14
 
15
15
  RUN npm run build
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codfish/actions-playground",
3
- "version": "4.7.1",
3
+ "version": "4.9.0",
4
4
  "description": "My own testing ground for messing around with GitHub Actions.",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -1,3 +1,3 @@
1
- appVersion: 4.7.1
1
+ appVersion: 4.9.0
2
2
  name: actions-playground
3
- version: 4.7.1
3
+ version: 4.9.0