Skip to content
This repository has been archived by the owner on Jul 24, 2020. It is now read-only.

Commit

Permalink
fixed workflow error
Browse files Browse the repository at this point in the history
  • Loading branch information
Akida31 committed May 17, 2020
1 parent 6b2966e commit fda4c63
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
node-version: '12.16.1'
- name: Cache node modules
uses: actions/cache@v1
id: cache
env:
cache-name: cache-node-modules
with:
Expand All @@ -24,6 +25,7 @@ jobs:
${{ runner.os }}-
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm install
- name: Build
run: npm run build
Expand All @@ -39,6 +41,7 @@ jobs:
node-version: '12.16.1'
- name: Cache node modules
uses: actions/cache@v1
id: cache
env:
cache-name: cache-node-modules
with:
Expand All @@ -48,7 +51,9 @@ jobs:
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm install
- name: Linting
run: npm run lint:all

Expand All @@ -64,6 +69,7 @@ jobs:
node-version: '12.16.1'
- name: Cache node modules
uses: actions/cache@v1
id: cache
env:
cache-name: cache-node-modules
with:
Expand All @@ -73,7 +79,9 @@ jobs:
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm install
- name: e2e
uses: cypress-io/github-action@v1
with:
Expand Down

0 comments on commit fda4c63

Please sign in to comment.