diff --git a/.github/workflows/react.yml b/.github/workflows/react.yml index 3b2d07e..88f68b6 100644 --- a/.github/workflows/react.yml +++ b/.github/workflows/react.yml @@ -25,16 +25,16 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - cache: npm + cache: "npm" cache-dependency-path: client/package.lock.json - name: Install Dependencies run: | - cd client && npm ci + cd client && npm install - name: Lint run: | cd client && npm run lint - name: Run Tests run: | - cd client && npm test --coverage + cd client && npm run test --coverage - name: Upload coverage uses: codecov/codecov-action@v1