I had to setup CI for a GitHub open source project recently, and decided to give GitHub Actions a try. I have to say it's pretty nice to have the CI directly handled by GH (GitLab has been doing it for years, I know...). I hope it's gonna help some open source projects to easily add CI validations to their PR workflow. That being said, there was only Ubuntu images for the Linux builds, and I'm not aware of a way to r…
Indeed, GitHub Actions only has ubuntu virtual machines, but you can run a custom container with the `jobs. .container` specifier.
We've been experimenting with this and are using this to add some CI to our react native frontend.