Skip to content

feat: support error analytics reporting #76

feat: support error analytics reporting

feat: support error analytics reporting #76

Workflow file for this run

name: PR to main branch
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
cache: npm
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Test
run: npm test