Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg committed May 7, 2024
1 parent 3ba0bb4 commit 4373f30
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install latest version of dependencies
run: npm install $(node -pe 'Object.keys(require(`.${path.sep}package.json`).dependencies).map((d) => `${d}@latest`).join(" ")');
shell: bash
run: |
node -pe 'Object.keys(require("./package.json").dependencies).map((d) => `${d}@latest`).join(" ")'
npm install $(node -pe 'Object.keys(require("./package.json").dependencies).map((d) => `${d}@latest`).join(" ")')
- name: Node.js information
run: |
node -v
Expand Down

0 comments on commit 4373f30

Please sign in to comment.