-
Notifications
You must be signed in to change notification settings - Fork 22
31 lines (30 loc) · 852 Bytes
/
prod.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
on: [push]
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: GabrielBB/[email protected]
with:
run: echo 'Testing xvfb'
- name: Test XVFB with working directory
uses: GabrielBB/[email protected]
with:
working-directory: ./node_modules
run: pwd
- name: Test XVFB with options
uses: GabrielBB/[email protected]
with:
options: -screen 0 1600x1200x24
run: echo 'Testing xvfb'
- name: Test using major tag
uses: GabrielBB/xvfb-action@v1
with:
working-directory: ./node_modules
options: -screen 0 1600x1200x24
run: pwd