Skip to content

Commit

Permalink
fix repo init
Browse files Browse the repository at this point in the history
  • Loading branch information
RobiNino committed May 22, 2024
1 parent c740ba8 commit 8764f66
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integrationTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ jobs:
- name: Install npm
uses: actions/setup-node@v3
with:
node-version: matrix.node
node-version: ${{ matrix.node }}

- name: Config list
run: npm config ls -l
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,13 @@ public class NpmBuildInfoExtractorTest extends IntegrationTestsBase {
private static final Set<String> DEV_SCOPE = Stream.of("dev").collect(Collectors.toSet());
private static final Set<String> PROD_SCOPE = Stream.of("prod").collect(Collectors.toSet());
private static final Set<String> DEV_PROD_SCOPE = Stream.of("prod", "dev").collect(Collectors.toSet());


public NpmBuildInfoExtractorTest() {
localRepo1 = getKeyWithTimestamp(NPM_LOCAL_REPO);
remoteRepo = "";
virtualRepo = "";
}

@AfterMethod
protected void cleanup() throws IOException {
FileUtils.deleteDirectory(tempWorkspace);
Expand Down

0 comments on commit 8764f66

Please sign in to comment.