Skip to content

Commit

Permalink
Merge branch 'master' into ts-migration
Browse files Browse the repository at this point in the history
* master:
  remove --production (LedgerHQ#601)
  • Loading branch information
valpinkman committed May 18, 2021
2 parents 4173c7c + 420b012 commit fddf3ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/cache@v2
id: cache
with:
path: '**/node_modules'
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
Expand All @@ -41,7 +41,7 @@ jobs:
node-version: 12.x
- uses: actions/cache@v2
with:
path: '**/node_modules'
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: lint
run: yarn lint
Expand All @@ -60,7 +60,7 @@ jobs:
node-version: 12.x
- uses: actions/cache@v2
with:
path: '**/node_modules'
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: build
run: yarn build
Expand All @@ -85,7 +85,7 @@ jobs:
node-version: 12.x
- uses: actions/cache@v2
with:
path: '**/node_modules'
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: docs
run: yarn doc

0 comments on commit fddf3ac

Please sign in to comment.