Skip to content

Commit

Permalink
test: initial test automation (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
waltjones authored Mar 2, 2022
1 parent 877e67c commit 8f85767
Show file tree
Hide file tree
Showing 6 changed files with 3,405 additions and 2,171 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: rollbar-react CI

on:
push:
branches: [ '**' ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x]

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test
Loading

0 comments on commit 8f85767

Please sign in to comment.