Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 6796ff4

Browse files
committed
ci: replace codecov with coveralls
1 parent 7bd1f9f commit 6796ff4

File tree

2 files changed

+26
-32
lines changed

2 files changed

+26
-32
lines changed

.github/workflows/codecov.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/coveralls.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Codecov Workflow
2+
on:
3+
pull_request:
4+
branches:
5+
- '**'
6+
push:
7+
branches:
8+
- master
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: Runner_16cores_Deriv-app # TODO: Replace this with the appropriate runner for Deriv-Api-Docs when provided
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
- name: Setup Node
17+
uses: './.github/actions/setup_node'
18+
- name: Install dependencies
19+
uses: './.github/actions/npm_install_from_cache'
20+
- name: Build
21+
uses: ./.github/actions/build
22+
- name: Run Tests
23+
run: |
24+
npm run test
25+
- name: Coveralls
26+
uses: coverallsapp/github-action@v2

0 commit comments

Comments
 (0)