Skip to content

feat: pass on sentry integrations #265

feat: pass on sentry integrations

feat: pass on sentry integrations #265

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- '**'
- '!main'
jobs:
test:
env:
CI: true
NODE_ENV: test
runs-on: ubuntu-latest
strategy:
matrix:
node_version:
- 14
- 16
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: 'npm'
- run: npm ci --ignore-scripts
- run: npm run lint
- run: npm test