Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions .github/workflows/cache-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ jobs:
- { path: tests/smoke-terraform.yaml, name: terraform }
- { path: tests/smoke-yarn.yaml, name: yarn }
- { path: tests/smoke-yarn-berry.yaml, name: yarn-berry }
- { path: tests/smoke-yarn-berry-group-rules.yaml, name: yarn-berry-group-rules }
- { path: tests/smoke-yarn-berry-workspaces.yaml, name: yarn-berry-workspaces }
- { path: tests/smoke-yarn-berry-workspaces-group-rules.yaml, name: yarn-berry-workspaces-group-rules }
- { path: tests/smoke-yarn-group-rules.yaml, name: yarn-group-rules }
steps:
- uses: actions/checkout@v3

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/cache-one.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ on:
- terraform
- yarn
- yarn-berry
- yarn-berry-group-rules
- yarn-berry-workspaces
- yarn-berry-workspaces-group-rules
- yarn-group-rules

env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/refresh-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ jobs:
- terraform
- yarn
- yarn-berry
- yarn-berry-group-rules
- yarn-berry-workspaces
- yarn-berry-workspaces-group-rules
- yarn-group-rules
steps:
- uses: actions/checkout@v3
- name: Download artifacts
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ jobs:
- terraform
- yarn
- yarn-berry
- yarn-berry-group-rules
- yarn-berry-workspaces
- yarn-berry-workspaces-group-rules
- yarn-group-rules
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion script/run-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# This script is useful for regenerating all of the smoke tests running locally.

declare -a arr=("actions" "bundler" "cargo" "composer" "docker" "elm" "go" "go-group-rules" "gradle" "hex" "maven" "npm" "npm-group-rules" "nuget" "pip" "pip-compile" "pipenv" "poetry" "pub" "submodules" "terraform")
declare -a arr=("actions" "bundler" "cargo" "composer" "docker" "elm" "go" "go-group-rules" "gradle" "hex" "maven" "npm" "npm-group-rules" "nuget" "pip" "pip-compile" "pipenv" "poetry" "pub" "submodules" "terraform" "yarn" "yarn-berry" "yarn-berry-group-rules" "yarn-berry-workspaces" "yarn-berry-workspaces-group-rules" "yarn-group-rules")
for eco in "${arr[@]}"
do
dependabot test -f "tests/smoke-$eco.yaml" -o "tests/smoke-$eco.yaml"
Expand Down
Loading