From 0ceca4b5d317c165971f8be1a2617d2e2de4459e Mon Sep 17 00:00:00 2001 From: Thomas Hu Date: Wed, 1 Jul 2020 11:51:01 -0400 Subject: [PATCH] Install dependencies --- .github/workflows/main.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ba0abe865..3cd5f561c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,11 +4,13 @@ jobs: run: runs-on: ubuntu-latest steps: - - uses: actions/checkout@master - - name: Upload coverage to Codecov - uses: ./ - with: - #commenting out token because tokenless uploads are now supported - #token: ${{secrets.CODECOV_TOKEN}} - flags: unittest - name: codecov-1 + - uses: actions/checkout@master + - name: Install dependencies + run: npm install + - name: Upload coverage to Codecov + uses: ./ + with: + #commenting out token because tokenless uploads are now supported + #token: ${{secrets.CODECOV_TOKEN}} + flags: unittest + name: codecov-1