Skip to content

Commit

Permalink
ci: for integration tests, make ** the default (#2187)
Browse files Browse the repository at this point in the history
- add shoelace
- update apollo
  • Loading branch information
Jason3S committed Jan 7, 2022
1 parent ed8af60 commit f24fb8a
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
12 changes: 11 additions & 1 deletion integration-tests/config/config.json
Expand Up @@ -315,9 +315,19 @@
"path": "apollographql/apollo-server",
"url": "https://github.com/apollographql/apollo-server.git",
"args": [
"**/*.*"
"**"
],
"commit": "ec61d76fde85521b27169dc93f3b3d0836aa860d"
},
{
"path": "shoelace-style/shoelace",
"url": "https://github.com/shoelace-style/shoelace.git",
"args": [
"**",
"-e",
"docs/assets/**"
],
"commit": "938c7d243781d87ad45b1942f04bc92b9e3a6ee2"
}
]
}
@@ -1,7 +1,7 @@

Repository: apollographql/apollo-server
Url: "https://github.com/apollographql/apollo-server.git"
Args: ["**/*.*"]
Args: ["**"]
Lines:
CSpell: Files checked: 345, Issues found: 0 in 0 files
CSpell: Files checked: 347, Issues found: 0 in 0 files
exit code: 0
@@ -0,0 +1,7 @@

Repository: shoelace-style/shoelace
Url: "https://github.com/shoelace-style/shoelace.git"
Args: ["**","-e","docs/assets/**"]
Lines:
CSpell: Files checked: 260, Issues found: 0 in 0 files
exit code: 0
2 changes: 1 addition & 1 deletion integration-tests/src/config.ts
Expand Up @@ -40,7 +40,7 @@ export function addRepository(path: string, url: string, commit: string, branch:
const config = readConfig();
const entries = new Map<string, Repository>(config.repositories.map((r) => [r.path, r]));
const existingEntry: Partial<Repository> = entries.get(path) || {};
const args = existingEntry.args || ['**/*.*'];
const args = existingEntry.args || ['**'];
const postCheckoutSteps = existingEntry.postCheckoutSteps;

const entry: Repository = {
Expand Down

0 comments on commit f24fb8a

Please sign in to comment.