From 3746a0466f208b89ce787465ac29681153baf0eb Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Sat, 10 Aug 2019 13:54:27 +0200 Subject: [PATCH] chore: trying github ci --- .github/workflows/nodejs.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 0000000..fdc794c --- /dev/null +++ b/.github/workflows/nodejs.yml @@ -0,0 +1,19 @@ +name: Node CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@master + - name: Use Node.js 10.x + uses: actions/setup-node@v1 + with: + version: 10.x + - name: npm install, build, and test + run: | + npm install + npm test