Skip to content

Bump playwright from 1.59.1 to 1.60.0 #59

Bump playwright from 1.59.1 to 1.60.0

Bump playwright from 1.59.1 to 1.60.0 #59

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
dotnet:
name: Build and Test
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
with:
dotnet-version: "10.0.x"
- name: Restore
run: dotnet restore WorkshopLab.sln
- name: Build
run: dotnet build WorkshopLab.sln --no-restore
- name: Test
run: dotnet test WorkshopLab.sln --no-build --verbosity normal
- name: Build hosted agent container
run: docker build --platform linux/amd64 -t workshoplab-agent -f ./src/WorkshopLab.AgentHost/Dockerfile ./src