+ [5 years ago] mazula there is a doc on the full syntax of a workflow?
+ [5 years ago] mazula to know all the possibilities
+ [5 years ago] drleviathan Yes, this is the one I found: https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
+ [5 years ago] drleviathan I'm not all that happy with it, but I've been able to make progress and muddle through.

message no. 178782

Posted by cornfeedhobo in #github at 2020-04-02T03:41:07Z

lol
+ [5 years ago] mazula hi if I have an application with nodejs and that I want to use github actions, I need to use a docker image or just run my tests on the project directly ?
+ [5 years ago] drleviathan I read somewhere: there are two kinds of github actions: (1) actions that run in JS (I assumed that meant node) and (2) actions that run on docker image
+ [5 years ago] drleviathan however, the "runner" is really just one of the OS's: linux, mac, or windows
+ [5 years ago] drleviathan and you get to "run" commands on it
+ [5 years ago] drleviathan the linux runner is listed as "ubuntu-18.04" but it isn't a vanilla base ubuntu:18.04 docker image because it has various tools already installed such as docker itself