gettext.js icon indicating copy to clipboard operation
gettext.js copied to clipboard

Use GitHub Actions and Dependabot

Open HonkingGoose opened this issue 1 year ago • 0 comments

Changes:

  • Replace Travis with GitHub Actions
  • Use Dependabot to update npm and GitHub Action dependencies

Context:

Your Travis tests don't work anymore. I think you should try out GitHub Actions. Using GitHub Actions is free on public repositories.

To get you up-to-date on your dependencies, I created a Dependabot configuration, which will update your:

  • GitHub Action dependencies:
    • actions/checkout@v3
    • actions/setup-node@v3
  • npm packages:
    • everything in dependencies in your package.json
    • everything in devDependencies in your package.json
    • Dependabot also updates your package-lock.json file

For now I've told Dependabot to update you daily, but you can get weekly or monthly updates if you want. 😉

Documentation

The GitHub docs you'll need are:

HonkingGoose avatar Sep 13 '22 07:09 HonkingGoose