Skip to content

[DO NOT MERGE] chore: update README.md #18

[DO NOT MERGE] chore: update README.md

[DO NOT MERGE] chore: update README.md #18

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
env:
BUGSPLAT_DATABASE: bugsplat_react
BUGSPLAT_CLIENT_ID: b8fbe5e4e915ddc9838cf186df1fe636
BUGSPLAT_CLIENT_SECRET: w4UHnUa104bnbQEfQ8gnxhRTshHaVss5
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node v${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run Test Suite
run: npm run test:all