Add firefox #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test bootstrap install | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: jrei/systemd-debian | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Add prerequisites | |
run: | | |
apt update | |
apt install -y sudo cron curl git | |
- name: Run bootstrap script | |
run: | | |
bash bootstrap.sh |