Skip to content

chore(deps): bump next from 14.2.3 to 14.2.10 in /examples/nextjs-example #553

chore(deps): bump next from 14.2.3 to 14.2.10 in /examples/nextjs-example

chore(deps): bump next from 14.2.3 to 14.2.10 in /examples/nextjs-example #553

Workflow file for this run

name: Build UHeadless
on:
push:
branches: [ contrib ]
paths:
- 'src/**'
- 'examples/**'
- 'Directory.Build.props'
- '.editorconfig'
- 'Nikcio.UHeadless.sln'
- 'nuget.config'
- '.github/workflows/build.yml'
pull_request:
branches: [ contrib ]
paths:
- 'src/**'
- 'examples/**'
- 'Directory.Build.props'
- '.editorconfig'
- 'Nikcio.UHeadless.sln'
- 'nuget.config'
- '.github/workflows/build.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
7.0.x
8.0.x
- uses: actions/cache@v4
id: cache-nuget-uheadless
with:
path: |
~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-uheadless
- name: Restore dependencies
run: dotnet restore
working-directory: ./
- name: Build
run: dotnet build --no-restore
working-directory: ./
- name: Test
run: dotnet test --no-build --verbosity normal
working-directory: ./