Fix workflow and bump version

This commit is contained in:
Shivam Mathur
2019-11-27 20:44:27 +05:30
parent 22f5ad47d2
commit 44815f1f73
3 changed files with 52 additions and 79 deletions

View File

@ -36,20 +36,7 @@ jobs:
with:
node-version: 12.x
- name: Get npm cache directory
id: npm-cache
run: echo "::set-output name=dir::$(npm config get cache)"
- name: Install dependencies
uses: actions/cache@v1
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Installing NPM packages
if: steps.cache.outputs.cache-hit != 'true'
run: npm install
- name: Prettier Format Check