https://github.com/0-vortex/github-actions-dependent-jobs-example
Demo repository for https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idneeds
https://github.com/0-vortex/github-actions-dependent-jobs-example
Last synced: about 1 year ago
JSON representation
Demo repository for https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idneeds
- Host: GitHub
- URL: https://github.com/0-vortex/github-actions-dependent-jobs-example
- Owner: 0-vortex
- Created: 2021-07-02T10:43:35.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-02T12:07:16.000Z (almost 5 years ago)
- Last Synced: 2025-05-22T06:11:34.170Z (about 1 year ago)
- Language: JavaScript
- Size: 184 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# github-actions-dependent-jobs-example
[](http://commitizen.github.io/cz-cli/)
TL;DR: It's not a new job if you need the same build context.
## Requirements
In order to run the project from a container we need `node>=16` and `npm>=7` installed on our development machines.
## Installation
Clone the package via `git`:
```shell
git clone git@github.com:0-vortex/github-actions-dependent-jobs-example.git
```
Go into the cloned repository and install `node` dependencies:
```shell
npm ci
```
## How to use
To develop locally just run:
```shell
npm start
```
## Contributing
This repository uses `husky` with pre-commit and message hooks. All you need to do after staging some files is to run:
```shell
npm run push
```