From 68b4298a34750cf7b2b7e839b675dba9006abcc8 Mon Sep 17 00:00:00 2001 From: Francisco Hodge Date: Mon, 26 Aug 2019 21:22:31 -0400 Subject: [PATCH] Update nodejs.yml --- .github/workflows/nodejs.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 88d02883..dafdd314 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -14,19 +14,23 @@ jobs: node-version: [12.x] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@master + - name: Use Node.js ${{ matrix.node_version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@master with: node-version: ${{ matrix.node_version }} - + - name: npm install, build, and test run: | - npm install -g codecov npm install npm run start -- --testMode npm run demo npm run coverage - codecov + + - uses: codecov/codecov-action@v1.0.2 + with: + token: ${{secrets.CODECOV_TOKEN}} + env: CI: true