Skip to content

Commit

Permalink
Merge pull request #185 from sebgroup/create-build-check-github-action
Browse files Browse the repository at this point in the history
Create build-check.yml
  • Loading branch information
yousifalraheem committed Mar 26, 2020
2 parents d6f3e88 + 93df5f5 commit 435ef43
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build Check

on:
pull_request:
branches:
- master
- develop

jobs:
build_check:
runs-on: [ubuntu-latest]
strategy:
matrix:
node: [ '10', '8' ]
steps:
- uses: actions/checkout@v2.0.0
- name: Setup node
uses: actions/setup-node@v1.1.0
with:
node-version: ${{ matrix.node }}
- name: installing dependencies
run: npm install
- name: running unit tests
run: npm test
- name: building
run: npm run build:production

0 comments on commit 435ef43

Please sign in to comment.