Skip to content

Commit

Permalink
attempt windows testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dangowans committed Nov 3, 2023
1 parent 816e717 commit 7a4d539
Showing 1 changed file with 25 additions and 7 deletions.
32 changes: 25 additions & 7 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,49 @@ on: [workflow_dispatch, push, pull_request]
permissions: read-all

jobs:
Coverage:
runs-on: ubuntu-20.04
Coverage-on-Ubuntu:
runs-on: ubuntu-latest
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '20'

- name: Install Application
run: |
npm ci
npm install -g mocha c8
- 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 != '' }}
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./codeclimate-test-reporter
chmod +x codeclimate-test-reporter
./codeclimate-test-reporter before-build
./codeclimate-test-reporter after-build -t lcov --exit-code $?
- name: Codacy
if: ${{ github.event_name != 'pull_request' && env.CODACY_PROJECT_TOKEN != '' }}
run: bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r ./coverage/lcov.info

Testing-on-Windows:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20'

- name: Install Application
run: |
npm ci
npm install -g mocha c8
- name: Run Coverage Testing
run: c8 --reporter=lcov --reporter=text --reporter=text-summary mocha --timeout 10000 --exit

0 comments on commit 7a4d539

Please sign in to comment.