Skip to content

fix: have track calls await on session replay init promise #21

fix: have track calls await on session replay init promise

fix: have track calls await on session replay init promise #21

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.15.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out git repository
uses: actions/checkout@v3
- name: Cache dependencies
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: enable corepack
run: corepack enable
- name: set node
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install project dependencies
run: |
yarn install --frozen-lockfile
- name: Build package
run: |
yarn build
- name: Test all packages
run: |
yarn test