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
10 changes: 8 additions & 2 deletions .github/workflows/nut.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:

- uses: actions/checkout@v4

# - uses: google/wireit@setup-github-actions-caching/v2
# continue-on-error: true
- uses: google/wireit@setup-github-actions-caching/v2
continue-on-error: true

- uses: actions/setup-node@v4
with:
Expand All @@ -91,6 +91,12 @@ jobs:
- uses: salesforcecli/github-workflows/.github/actions/yarnInstallWithRetries@main
if: ${{ steps.cache-nodemodules.outputs.cache-hit != 'true' }}

# This is a temporary workaround to ensure wireit is >= 0.14.12
# Once all plugins/libs that use this workflow are updated, this can be removed
# See: https://github.com/google/wireit/issues/1297#issuecomment-2794737569
- name: Install wireit
run: yarn add wireit@^0.14.12

- run: yarn compile

- name: Check that oclif config exists
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/unitTestsLinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
node-version: ${{ matrix.node_version }}
cache: yarn

# - uses: google/wireit@setup-github-actions-caching/v2
# continue-on-error: true
- uses: google/wireit@setup-github-actions-caching/v2
continue-on-error: true

- name: Cache node modules
id: cache-nodemodules
Expand All @@ -53,6 +53,12 @@ jobs:
- uses: salesforcecli/github-workflows/.github/actions/yarnInstallWithRetries@main
if: ${{ steps.cache-nodemodules.outputs.cache-hit != 'true' }}

# This is a temporary workaround to ensure wireit is >= 0.14.12
# Once all plugins/libraries that use this workflow are updated, this can be removed
# See: https://github.com/google/wireit/issues/1297#issuecomment-2794737569
- name: Install wireit
run: yarn add wireit@^0.14.12

- run: yarn build

- name: yarn test
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/unitTestsWindows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:

- uses: actions/checkout@v4

# - uses: google/wireit@setup-github-actions-caching/v2
# continue-on-error: true
- uses: google/wireit@setup-github-actions-caching/v2
continue-on-error: true

- uses: actions/setup-node@v4
with:
Expand All @@ -45,6 +45,12 @@ jobs:
- uses: salesforcecli/github-workflows/.github/actions/yarnInstallWithRetries@main
if: ${{ steps.cache-nodemodules.outputs.cache-hit != 'true' }}

# This is a temporary workaround to ensure wireit is >= 0.14.12
# Once all plugins/libraries that use this workflow are updated, this can be removed
# See: https://github.com/google/wireit/issues/1297#issuecomment-2794737569
- name: Install wireit
run: yarn add wireit@^0.14.12

- run: yarn build

- name: yarn test
Expand Down