Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 675 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 675 Bytes

shared-actions

This repository includes GitHub Actions that are shared among multiple repositories.

Available Actions for Node projects:

1. CI Tests

  • Path: /test-node-project/action.yml
  • Description: This action automates the testing process for Node.js projects. It caches dependencies, installs the necessary packages, and runs tests. If the tests fail, it uploads the test report for further investigation.

2. Build

  • Path: /build-node-project/action.yml
  • Description: This action automates the build process for Node.js projects. It installs dependencies, builds the project, and caches the results to speed up subsequent builds.