Skip to content

Commit

Permalink
forgot action files
Browse files Browse the repository at this point in the history
  • Loading branch information
lmtierney committed Jun 22, 2022
1 parent 4887593 commit 0232d21
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/actions/install-chrome/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: 'Install Chrome'
description: 'Install Chrome Stable'
runs:
using: "composite"
steps:
- run: |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee -a /etc/apt/sources.list.d/google-chrome.list
sudo apt-get update -qqy
sudo apt-get -qqy install google-chrome-stable
sudo rm /etc/apt/sources.list.d/google-chrome.list
shell: bash
8 changes: 8 additions & 0 deletions .github/actions/setup-linux/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: 'Setup Linux'
description: 'Run Linux in Virtual Desktop'
runs:
using: "composite"
steps:
- shell: bash
run: |
Xvfb :99 &

0 comments on commit 0232d21

Please sign in to comment.