|
|
@@ -8,6 +8,8 @@ on:
|
|
|
paths:
|
|
|
- .github/workflows/ci-bot-proxy.yml
|
|
|
- packages/growi-bot-proxy/*
|
|
|
+ - package.json
|
|
|
+ - yarn.lock
|
|
|
|
|
|
defaults:
|
|
|
run:
|
|
|
@@ -49,7 +51,7 @@ jobs:
|
|
|
- name: Install dependencies
|
|
|
if: steps.cache-dependencies.outputs.cache-hit != 'true'
|
|
|
run: |
|
|
|
- yarn
|
|
|
+ yarn --frozen-lockfile
|
|
|
- name: Print dependencies
|
|
|
run: |
|
|
|
echo -n "node " && node -v
|
|
|
@@ -104,7 +106,7 @@ jobs:
|
|
|
- name: Install dependencies
|
|
|
if: steps.cache-dependencies.outputs.cache-hit != 'true'
|
|
|
run: |
|
|
|
- yarn
|
|
|
+ yarn --frozen-lockfile
|
|
|
- name: Print dependencies
|
|
|
run: |
|
|
|
echo -n "node " && node -v
|
|
|
@@ -166,7 +168,7 @@ jobs:
|
|
|
${{ runner.os }}-yarn-
|
|
|
- name: Install dependencies
|
|
|
run: |
|
|
|
- yarn
|
|
|
+ yarn --frozen-lockfile
|
|
|
- name: Print dependencies
|
|
|
run: |
|
|
|
echo -n "node " && node -v
|