Skip to content

Commit

Permalink
disable caching for windows ci (#4469)
Browse files Browse the repository at this point in the history
  • Loading branch information
rochdev authored and juan-fernandez committed Jul 10, 2024
1 parent 9b3f55b commit 2c9ac2a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/appsec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/node/setup
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: yarn install
- run: yarn test:appsec:ci
- uses: codecov/codecov-action@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/profiling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/node/setup
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: yarn install
- run: yarn test:profiler:ci
- run: yarn test:integration:profiler
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/tracing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/node/setup
- uses: actions/setup-node@v3
with:
cache: yarn
node-version: '18'
- run: yarn install
- run: yarn test:trace:core:ci
- uses: codecov/codecov-action@v3

0 comments on commit 2c9ac2a

Please sign in to comment.