forked from cloudflare/workers-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (37 loc) · 1.07 KB
/
codecov-context.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
45
46
name: CodeCov Main Context
on:
push:
branches: [main]
jobs:
codecov:
if: ${{ github.repository_owner == 'cloudflare' }}
name: CodeCov Main Branch Updater
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
ref: main
- name: Use Node.js 16.13
uses: actions/setup-node@v3
with:
node-version: 16.13
cache: "npm" # cache ~/.npm in case 'npm ci' needs to run
- name: Install workerd Dependencies
if: ${{ runner.os == 'Linux' }}
run: |
export DEBIAN_FRONTEND=noninteractive
sudo apt-get update
sudo apt-get install -y libc++1
- name: Install NPM Dependencies
run: npm ci
- name: Build wrangler
run: npm run build
env:
NODE_ENV: "production"
- name: Run tests & collect coverage
run: npm run test:ci -w wrangler
env:
NODE_OPTIONS: "--max_old_space_size=8192"
- name: Report Code Coverage
uses: codecov/codecov-action@v3