-
-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (27 loc) · 672 Bytes
/
ci.yml
File metadata and controls
33 lines (27 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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: [24]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node v${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run Test Suite
run: npm run test:all