Skip to content

Merge branch 'tms/v49-build-fix' of github.com:bugsnag/bugsnag-expo i… #1400

Merge branch 'tms/v49-build-fix' of github.com:bugsnag/bugsnag-expo i…

Merge branch 'tms/v49-build-fix' of github.com:bugsnag/bugsnag-expo i… #1400

Workflow file for this run

name: Unit tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['14']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install --no-audit --no-package-lock
- run: npx lerna bootstrap --no-ci
- run: npm run test:unit
- run: npm run test:lint