break up code climate steps

deepsource-autofix-76c6eb20
Dan Gowans 2023-01-26 15:22:36 -05:00
parent 68853bff4f
commit 119cc008f5
1 changed files with 19 additions and 9 deletions

View File

@ -14,6 +14,7 @@ jobs:
env: env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
name: Node ${{ matrix.node }} name: Node ${{ matrix.node }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -21,29 +22,38 @@ jobs:
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: ${{ matrix.node }} node-version: ${{ matrix.node }}
- name: Install Application - name: Install Application
run: | run: |
npm ci npm ci
npm install -g mocha c8 cypress@12 npm install -g mocha c8 cypress@12
- name: Copy Test Config - name: Copy Test Config
run: cp ./data/config.testing.js ./data/config.js run: cp ./data/config.testing.js ./data/config.js
- name: Initialize Database - name: Initialize Database
run: npm run init:cemetery:test run: npm run init:cemetery:test
- name: Verify Cypress
run: cypress verify - name: Code Climate (Before)
env:
CYPRESS_VERIFY_TIMEOUT: 600000
- name: Run Coverage Testing
run: c8 --reporter=lcov --reporter=text --reporter=text-summary mocha --timeout 10000 --exit
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
- name: Code Climate
if: ${{ github.event_name != 'pull_request' && env.CC_TEST_REPORTER_ID != '' && matrix.node == 16 }} if: ${{ github.event_name != 'pull_request' && env.CC_TEST_REPORTER_ID != '' && matrix.node == 16 }}
run: | run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./codeclimate-test-reporter curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./codeclimate-test-reporter
chmod +x codeclimate-test-reporter chmod +x codeclimate-test-reporter
./codeclimate-test-reporter before-build ./codeclimate-test-reporter before-build
- name: Verify Cypress
run: cypress verify
env:
CYPRESS_VERIFY_TIMEOUT: 600000
- name: Run Coverage Testing
run: c8 --reporter=lcov --reporter=text --reporter=text-summary mocha --timeout 10000 --exit
- name: Code Climate (After)
if: ${{ github.event_name != 'pull_request' && env.CC_TEST_REPORTER_ID != '' && matrix.node == 16 }}
run: |
./codeclimate-test-reporter after-build -t lcov --exit-code $? ./codeclimate-test-reporter after-build -t lcov --exit-code $?
- name: Codacy - name: Codacy
if: ${{ github.event_name != 'pull_request' && env.CODACY_PROJECT_TOKEN != '' && matrix.node == 16 }} if: ${{ github.event_name != 'pull_request' && env.CODACY_PROJECT_TOKEN != '' && matrix.node == 16 }}
run: bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r ./coverage/lcov.info run: bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r ./coverage/lcov.info