github-actions-demo/README.md

13 lines
494 B
Markdown
Raw Permalink Normal View History

2019-01-15 15:40:13 +08:00
# Overview
Simple Node.js application to demonstrate the use of GitHub Actions
2019-01-15 15:53:25 +08:00
2019-01-18 08:44:03 +08:00
# Look Ma, no Makefile!
2020-02-12 16:22:14 +08:00
All the tasks necessary for testing, building and deploying this code is already defined in `.github/workflows/` so why would you want to also create a `Makefile` for local development? Now you can use [act](https://github.com/nektos/act) to run the actions locally!
2019-01-18 08:44:03 +08:00
Try these:
2020-02-12 16:22:14 +08:00
* `act -j test` - run the tests
2019-01-18 08:44:03 +08:00
* `act` - run the the entire pipeline
* `act -l` - view the execution graph