Skip to content

Commit

Permalink
chore(workflow) add
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Aug 14, 2019
1 parent a493e5a commit 1ab5b18
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Node CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
version: 12.x
- name: npm install, build, and test
run: |
npm install
npm run build
npm test

0 comments on commit 1ab5b18

Please sign in to comment.