diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5f34bbd..1904da7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,8 +18,14 @@ jobs: with: node-version: '12' - - run: npm ci - - run: npm run all + - name: Update npm + run: npm i -g npm@latest + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run all test: runs-on: ubuntu-latest