-
Notifications
You must be signed in to change notification settings - Fork 9
57 lines (51 loc) · 1.23 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
name: local
"on":
push:
branches:
- main
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@v3
- name: Fail if rebuilding produce a dirty repo
run: |
npm install
npx ncc build index.js
if [[ -n $(git status --porcelain) ]]; then
echo "Repo is dirty";
git status --porcelain;
exit 1;
fi
shell: bash
- 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