Skip to content

Commit

Permalink
Added the GitHub Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
OlehDutchenko committed Feb 9, 2021
1 parent 07536b5 commit 62f294a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test and Build

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Test
run: npm test

0 comments on commit 62f294a

Please sign in to comment.