diff options
author | Vitaly Takmazov | 2023-03-05 16:32:12 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-03-05 16:32:12 +0300 |
commit | 79d769f3d29d1827d7744db3a26f02bc0d95d792 (patch) | |
tree | 645eef66702817b3b92cd3ce555ecb7c44717e59 /.github | |
parent | 88efdf2cde176a1f42be5183d42c34b7ad91b266 (diff) |
Merge vnext build configuration
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 |