Skip to content

Commit

Permalink
Added CI action for pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
vb committed Oct 13, 2021
1 parent fb8fc7a commit 78b3ac8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on:
pull_request:
branches: [ master ]


jobs:
test_pull_request:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm test

0 comments on commit 78b3ac8

Please sign in to comment.