Skip to content

Commit

Permalink
Add codecov upload
Browse files Browse the repository at this point in the history
Signed-off-by: John Molakvoæ <[email protected]>
  • Loading branch information
skjnldsv committed Mar 15, 2022
1 parent 9b82bd3 commit b34df2d
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 8 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/node-test.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
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
4 changes: 0 additions & 4 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,3 @@ jobs:
run: |
git status
git --no-pager diff
- name: Testing
run: |
npm run test --if-present
4 changes: 0 additions & 4 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ module.exports = {
'src/**/*.{js,vue}',
'!**/node_modules/**',
],
coverageReporters: [
'html',
'text-summary',
],
setupFilesAfterEnv: [
'<rootDir>/tests/setup.js',
],
Expand Down

0 comments on commit b34df2d

Please sign in to comment.