From 1ab5b189dce1aff7b8aa629a50ee23bb408e5eb1 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 14 Aug 2019 15:42:07 +0300 Subject: [PATCH] chore(workflow) add --- .github/workflows/nodejs.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/nodejs.yml diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml new file mode 100644 index 0000000000..15f55f5ea8 --- /dev/null +++ b/.github/workflows/nodejs.yml @@ -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