-
Notifications
You must be signed in to change notification settings - Fork 3
44 lines (38 loc) · 1016 Bytes
/
CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: CI
on:
push:
branches:
- "main"
- "development"
pull_request:
branches:
- "main"
- "development"
jobs:
build:
runs-on: ubuntu-latest
#needs: [test_frontend]
steps:
- name: Checkout repository
- uses: actions/checkout@v4
- name: Upload Coverage Artifact
uses: actions/upload-artifact@v2
with:
name: coverage
path: ./coverage
- name: Download Coverage Artifacts
uses: actions/download-artifact@v2
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
env:
COVERALLS_REPO_TOKEN: PVE088TeMiE2YcwDT0Ymr7s7UBhbB51dF
# deploy_vercel:
# needs: [test_frontend, upload_coverage]
# uses: ./.github/workflows/deploy_vercel.yml
# secrets: inherit
#test_frontend:
# uses: ./.github/workflows/test_frontend.yml
# secrets: inherit
#test_backend:
# uses: ./.github/workflows/test_backend.yml
# secrets: inherit