Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
node-version-file: "package.json"

- name: Install dependencies
run: yarn install
run: yarn install --immutable --immutable-cache
- name: Bump version
run: yarn version:all ${{ inputs.version }}
- name: Add files
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
api_key: ${{secrets.DATADOG_API_KEY}}
site: datadoghq.com

- run: yarn install
- run: yarn install --immutable --immutable-cache

- name: Build all plugins
if: steps.cache-build.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
api_key: ${{secrets.DATADOG_API_KEY}}
site: datadoghq.com

- run: yarn install
- run: yarn install --immutable --immutable-cache

- name: Install playwright
run: yarn workspace @dd/tests playwright install --with-deps
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
'packages/plugins/**', 'packages/published/**',
'packages/tools/src/**', 'yarn.lock') }}

- run: yarn install
- run: yarn install --immutable --immutable-cache

# Pre build the rollup plugin so it can be used in the following step.
- name: Build rollup's plugin
Expand Down
Loading