Skip to content
airplay

GitHub Action

gabrielbb/xvfb-action

v1.6 Latest version

gabrielbb/xvfb-action

airplay

gabrielbb/xvfb-action

Run your headless tests with XVFB

Installation

Copy and paste the following snippet into your .yml file.

              

- name: gabrielbb/xvfb-action

uses: GabrielBB/xvfb-action@v1.6

Learn more about this action in GabrielBB/xvfb-action

Choose a version

❌🖥️ [DEPRECATED] XVFB Github Action

THIS REPO IS NO LONGER MAINTAINED, PLEASE SWITCH TO: https://github.com/coactions/setup-xvfb

This action installs XVFB and runs your headless tests with it. It cleans up the xvfb process after your tests are done. If it detects you're not using linux then your tests still run, but without xvfb, which is very practical for multi-platform workflows.

Example usage

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: Run headless test
        uses: GabrielBB/xvfb-action@v1
        with:
          run: npm test
          working-directory: ./ #optional
          options: #optional