diff options
author | ikoamu <ikoamu@gmail.com> | 2024-01-24 00:45:55 +0900 |
---|---|---|
committer | ikoamu <ikoamu@gmail.com> | 2024-01-24 00:45:55 +0900 |
commit | a710958db9ff1f65a5f136808a915ae27633ec72 (patch) | |
tree | c22b55f59a1cc67d2516a83d21a66ce4bd9d20da | |
parent | d34ffb2ee110924619f868bfc313959076f8dee4 (diff) |
Update action.yml to print files instead of generating graphdata.json
-rw-r--r-- | action.yml | 20 |
1 files changed, 12 insertions, 8 deletions
@@ -21,14 +21,18 @@ runs: with: node-version: "20.x" - - name: Install dependencies - run: npm install + - name: print files + run: ls -la shell: bash - - name: Generate graphdata.json - run: npm run generate --script_params=./orgs/org-roam.db - shell: bash + # - name: Install dependencies + # run: npm install + # shell: bash - - name: print graphdata.json - run: cat graphdata.json - shell: bash + # - name: Generate graphdata.json + # run: npm run generate --script_params=./orgs/org-roam.db + # shell: bash + + # - name: print graphdata.json + # run: cat graphdata.json + # shell: bash |