[FSSDK-12169] package manager update #468
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: React SDK CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| unitTests: | |
| name: Run Unit Tests (Node ${{ matrix.node }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: [ '18', '20', '22', '24' ] | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v3 | |
| - name: Set up Node ${{ matrix.node }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Run tests | |
| run: npm test | |
| coverage: | |
| name: Jest Coverage Report | |
| runs-on: ubuntu-latest | |
| needs: [ unitTests ] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: ArtiomTr/jest-coverage-report-action@v2 | |
| with: | |
| custom-title: 'Jest Coverage Report' | |
| package-manager: 'yarn' | |
| integration_tests: | |
| name: Run integration tests | |
| needs: [ unitTests ] | |
| uses: optimizely/react-sdk/.github/workflows/integration_test.yml@master | |
| secrets: | |
| CI_USER_TOKEN: ${{ secrets.CI_USER_TOKEN }} | |
| TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }} |