Skip to content

Commit

Permalink
Update auto-dependency-update.v1.1.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
deleonio committed Dec 6, 2020
1 parent de9323e commit 719133b
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/auto-dependency-update.v1.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,19 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Install and update dependencies
run: npm run update
node-version: 15.x
- name: Install dependencies
run: |
npm i lerna --no-save
npx lerna exec --ignore=@template/* --parallel -- npm install
- name: Cache multiple paths
uses: actions/cache@v2
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Update dependencies
run: npx lerna exec --ignore=@template/* --parallel -- npm update
- name: Commit changed files
run: |
git config --local user.email "action@github.com"
Expand Down

0 comments on commit 719133b

Please sign in to comment.