Skip to content

docs: 📝 update CHANGELOG #590

docs: 📝 update CHANGELOG

docs: 📝 update CHANGELOG #590

Workflow file for this run

name: Run @bugsnag/source-maps unit tests, type checking and linting
on: [ push, pull_request ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [10.x, 12.x, 14.x]
os: [ubuntu-20.04, windows-2019]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test
env:
BUGSNAG_TIMEOUT_MS: 5000