-
Notifications
You must be signed in to change notification settings - Fork 22
39 lines (34 loc) · 920 Bytes
/
local.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
on: [push, pull_request, workflow_dispatch]
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Test XVFB
uses: ./
with:
run: echo 'Testing xvfb'
- name: Test XVFB with working directory
uses: ./
with:
working-directory: ./node_modules
run: pwd
- name: Test XVFB with options
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: ./
with:
options: -screen 0 1600x1200x24
run: xrandr
- name: Test XVFB with multiple commands
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: ./
with:
options: -screen 0 1600x1200x24
run: |
echo 'Testing xvfb'
pwd
xrandr