Actions and workflows to make GitHub Actions simpler, more robust and more efficient.
docker-build-push
: Build and push Docker images to Docker Hub.notify-deploy-to-slack
: Sends a notification to Slack using a pre-configured webhook.publish-to-npm
: Sets up Node, runs the prepublishOnly script and publishes the package to the NPM registry.setup-node-env
: Setups up Node, restores NPM cache and installs dependencies.
docker-checks
: Locally builds a Docker image and usesaquasecurity/trivy-action
to check for vulnerabilities.js-checks
: Run standard checks as linter, code formatter; then run tests against different Node versions.npm-publish
: Publish a package to NPM.
To use the actions and workflows in this repository, add a reference as follows:
# .github/workflows/example.yml
jobs:
job-one:
steps:
# Uses the default branch
- uses: bloq/actions/setup-node-env@master
# Uses a specific version tag
- uses: bloq/actions/[email protected]
job-two:
uses: bloq/actions/.github/workflows/js-checks.yml@v1
See the GitHub Actions docs for details about how to use a public action and how to reference a reusable workflow.
Once the PRs with the changes are approved, either merge the branch locally and push master
or merge the PR in GitHub and pull master
. Then update and push the tags:
./bump-version <major, minor, patch>