Skip to content

Update docs

Update docs #54

Workflow file for this run

name: CI
on:
push:
branches:
- main
- release-*
pull_request:
workflow_dispatch:
env:
DOTNET_NOLOGO: true
jobs:
build:
name: Linux
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup .NET SDK
uses: actions/[email protected]
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build src --configuration Release
- name: Install Playwright
run: ./install.ps1
shell: pwsh
# - name: Run tests
# env:
# DEBUG: pw:browser
# LIBGL_ALWAYS_INDIRECT: 1
# DISPLAY: 0
# uses: coactions/setup-xvfb@v1
# with:
# run: dotnet test
# working-directory: ./src/Tests/Tests