-
Notifications
You must be signed in to change notification settings - Fork 3
56 lines (46 loc) · 1.46 KB
/
ci-test-unit.yml
File metadata and controls
56 lines (46 loc) · 1.46 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
name: "Unit tests"
on:
pull_request:
jobs:
unit-test:
runs-on: ubuntu-latest
environment: test
env:
PORT: 4000
SUPABASE_CACHING_DB_URL: "https://test.supabase.com"
SUPABASE_CACHING_ANON_API_KEY: "test"
SUPABASE_DATA_DB_URL: "https://test.supabase.com"
SUPABASE_DATA_SERVICE_API_KEY: "test"
KEY: "test"
PROOF: "test"
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}
DRPC_API_KEY: "test"
FILECOIN_API_KEY: "test"
INDEXER_ENVIRONMENT: "test"
CACHING_DATABASE_URL: "https://test.supabase.com"
DATA_DATABASE_URL: "https://test.supabase.com"
ENABLE_CRON_JOBS: "false"
permissions:
# Required to checkout the code
contents: read
# Required to put a comment into the pull-request
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: "Install Node"
uses: actions/setup-node@v4
with:
node-version: "20.x"
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: Install dependencies
run: pnpm install
- name: "Run unit tests"
run: pnpm test:coverage
- name: "Report Coverage"
# Set if: always() to also generate the report if tests are failing
# Only works if you set `reportOnFailure: true` in your vite config as specified above
if: always()
uses: davelosert/vitest-coverage-report-action@v2