actions-package-update icon indicating copy to clipboard operation
actions-package-update copied to clipboard

How to test the action?

Open thamara opened this issue 5 years ago • 1 comments

Hey! I've been using this action for a while, and about one and a half months ago the action started to fail to try to use fsevents in a ubuntu env (it's supposed to try that only on mac). Testings locally on a ubuntu machine I reached the conclusion the problem was that it was trying to run npm install, instead of npm ci. I tried cloning the action repository to validate a fix before submitting a PR, but for some reason, it's not being able to run the new command (it continues to run the version from the original repository). What I did was to change the uses: taichi/actions-package-update@master to point to my repository, but it did not work. Can you please share how this can be tested/validated? Thanks!

thamara avatar Jan 08 '21 04:01 thamara

Adding workflow_dispatch: as shown below will add a Github button allowing you to manually trigger the action.

on:
  workflow_dispatch:
  schedule:
  - cron: 0 0 * * 3 # every Wednesday

https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/

bravo-kernel avatar Feb 08 '23 16:02 bravo-kernel