diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/dependabot.yml | 5 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 8 |
2 files changed, 4 insertions, 9 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3785ca8c..4b72c731 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,11 +5,6 @@ updates: schedule: interval: daily open-pull-requests-limit: 10 -- package-ecosystem: npm - directory: "/vnext" - schedule: - interval: daily - open-pull-requests-limit: 10 - package-ecosystem: maven directory: "/" schedule: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b722d36d..ca9a8181 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,7 +76,7 @@ jobs: node-version: "18" cache: "npm" - run: npm ci - - run: npm test - - run: npm run lint - - run: npm run build - - run: npm run build:ssr + - run: npm vnext:test + - run: npm run vnext:lint + - run: npm run vnext:build + - run: npm run vnext:build:ssr |