[RUM 7792] Add anonymous user tracking configuration parameter (#239) #450
This file contains 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: browser-sdk | |
on: | |
push: | |
jobs: | |
browser-sdk-test: | |
strategy: | |
matrix: | |
test_type: [unit] # e2e should be added back, see RUMF-1551 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: 'DataDog/browser-sdk' | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: yarn | |
- name: Update rum-events-format | |
run: | | |
cd rum-events-format | |
git checkout ${{ github.sha }} | |
- name: Run ${{matrix.test_type}} tests | |
run: yarn test:${{matrix.test_type}} |