-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (32 loc) · 878 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
name: CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: expo/expo-github-action@v6
with:
expo-version: 4.x
# token: ${{ secrets.EXPO_TOKEN }}
- name: Install modules
run: yarn install --immutable
- name: Check linting
run: yarn lint
- name: Build typescript
run: yarn tsc
- name: Test
run: yarn test --coverage --detectOpenHandles --forceExit
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
# token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage/
flags: integration
name: codecov-umbrella
fail_ci_if_error: false
verbose: true