From 41a78d50b4b7017d09dcbf54263ab42952b52c64 Mon Sep 17 00:00:00 2001 From: Rifa Achrinza <25147899+achrinza@users.noreply.github.com> Date: Mon, 24 Oct 2022 05:29:21 +0800 Subject: [PATCH] ci: prepare for v6.x branch Signed-off-by: Rifa Achrinza <25147899+achrinza@users.noreply.github.com> --- .github/workflows/continuous-integration.yaml | 16 ++++------------ renovate.json | 7 ------- 2 files changed, 4 insertions(+), 19 deletions(-) delete mode 100644 renovate.json diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index 50ec2e50c..d0b20dffa 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -3,12 +3,10 @@ name: CI on: push: branches: - - master - - 5.x + - 6.x pull_request: branches: - - master - - 5.x + - 6.x schedule: - cron: '0 2 * * 1' # At 02:00 on Monday @@ -21,7 +19,7 @@ jobs: timeout-minutes: 15 strategy: matrix: - node-version: [10, 12, 14, 16, 17, 18] + node-version: [14, 16, 17, 18] mongodb-version: [4.4] fail-fast: false steps: @@ -36,14 +34,8 @@ jobs: mongodb-version: ${{ matrix.mongodb-version }} - name: Bootstrap project run: npm ci --ignore-scripts - - name: Update NPM (Node.js v10) - if: matrix.node-version == 10 - run: npm install --global npm@7 - - name: Update NPM - if: matrix.node-version != 10 - run: npm install --global npm@8 - name: Run tests - run: npm test --ignore-scripts + run: npm test - name: Publish coverage report to Coveralls uses: coverallsapp/github-action@master with: diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 1258baeb1..000000000 --- a/renovate.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "extends": [ - "github>loopbackio/cicd//shared-configs/renovate/base" - ], - "baseBranches": ["master", "5.x"] -} -