Skip to content
/ actions Public

Actions and workflows to make GitHub Actions

License

Notifications You must be signed in to change notification settings

bloq/actions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

actions

Actions and workflows to make GitHub Actions simpler, more robust and more efficient.

Actions

  • setup-node-env: Setups up Node, restores NPM cache and installs dependencies
  • publish-to-npm: Sets up Node, runs the prepublishOnly script and publishes the package to the NPM registry

Reusable workflows

  • js-checks: Run standard checks as linter, code formatter; then run tests against different Node versions

Usage

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/.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.

About

Actions and workflows to make GitHub Actions

Resources

License

Stars

Watchers

Forks