Skip to content

update selenium driver to work with a local timeout #121

update selenium driver to work with a local timeout

update selenium driver to work with a local timeout #121

Workflow file for this run

name: test and publish
on:
push:
branches:
- master
repository_dispatch:
types: [push-event]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Build with dotnet
run: dotnet build --configuration Release
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Run Unit Tests
run: |
docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome
dotnet test --verbosity normal --configuration Release
publish:
needs: [build, test]
runs-on: ubuntu-latest
steps:

Check failure on line 45 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 45
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Publish nuget
run: dotnet nuget push **/*.nupkg -k ${{secrets.NGPackagesToken}} -s https://api.nuget.org/v3/index.json || true