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 4373f30 commit a05dfcf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install latest version of dependencies
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(" ")')
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(" ")')
shell: bash
- name: Node.js information
run: |
node -v
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/js-test-and-release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: test & maybe release

defaults:
run:
working-directory: js

on:
push:
branches:
Expand Down

0 comments on commit a05dfcf

Please sign in to comment.