-
Notifications
You must be signed in to change notification settings - Fork 234
58 lines (55 loc) · 1.48 KB
/
tests_jest.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
47
48
49
50
51
52
53
54
55
56
57
58
name: Jest Tests
on:
workflow_dispatch:
pull_request:
paths-ignore:
- 'docs-react-native/**'
- '**/*.md'
push:
branches:
- main
paths-ignore:
- 'docs-react-native/**'
- '**/*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
jest:
name: Jest
timeout-minutes: 50
runs-on: ubuntu-latest
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 50
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Set workflow variables
id: workflow-variables
run: |
echo "yarn-cache=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
name: Yarn Cache
id: yarn-cache
with:
path: ${{ steps.workflow-variables.outputs.yarn-cache }}
key: ${{ runner.os }}-yarn-v1-${{ hashFiles('package.json', 'packages/react-native/package.json', 'tests_react_native/package.json') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Yarn Install
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
retry_wait_seconds: 60
max_attempts: 4
command: yarn --no-audit --prefer-offline
- name: Jest
run: yarn tests_rn:test
- uses: codecov/codecov-action@v4
with:
verbose: true