We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b780845 commit fc4b6ddCopy full SHA for fc4b6dd
.github/workflows/react.yml
@@ -7,12 +7,6 @@ on:
7
branches: [ master ]
8
9
jobs:
10
- integration_tests:
11
- name: Run integration tests
12
- uses: optimizely/react-sdk/.github/workflows/integration_test.yml@master
13
- secrets:
14
- CI_USER_TOKEN: ${{ secrets.CI_USER_TOKEN }}
15
- TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }}
16
unitTests:
17
name: Run Unit Tests (Node ${{ matrix.node }})
18
runs-on: ubuntu-latest
@@ -30,6 +24,13 @@ jobs:
30
24
run: yarn install
31
25
- name: Run tests
32
26
run: yarn test
27
+ integration_tests:
28
+ name: Run integration tests
29
+ needs: [ unitTests ]
+ uses: optimizely/react-sdk/.github/workflows/integration_test.yml@master
+ secrets:
+ CI_USER_TOKEN: ${{ secrets.CI_USER_TOKEN }}
33
+ TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }}
34
coverage:
35
name: Jest Coverage Report
36
0 commit comments