Add codecov upload

Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ 2022-03-15 16:38:25 +01:00
parent 9b82bd312b
commit b34df2d302
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
3 changed files with 47 additions and 8 deletions

47
.github/workflows/node-test.yml vendored Normal file
View File

@ -0,0 +1,47 @@
# This workflow is provided via the organization template repository
#
# https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
name: Node
on:
pull_request:
push:
branches:
- main
- master
- stable*
jobs:
test:
runs-on: ubuntu-latest
name: test
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Read package.json node and npm engines version
uses: skjnldsv/read-package-engines-version-actions@v1.2
id: versions
with:
fallbackNode: '^12'
fallbackNpm: '^6'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@v3
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}
- name: Set up npm ${{ steps.versions.outputs.npmVersion }}
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
- name: Install dependencies
run: npm ci
- name: Testing
run: npm run test:coverage --if-present
- name: Upload coverage
uses: codecov/codecov-action@v2

View File

@ -51,7 +51,3 @@ jobs:
run: |
git status
git --no-pager diff
- name: Testing
run: |
npm run test --if-present

View File

@ -7,10 +7,6 @@ module.exports = {
'src/**/*.{js,vue}',
'!**/node_modules/**',
],
coverageReporters: [
'html',
'text-summary',
],
setupFilesAfterEnv: [
'<rootDir>/tests/setup.js',
],