Skip to content

Update to NET 8

Update to NET 8 #476

Workflow file for this run

name: Build
on:
pull_request:
branches: [ main, release/1.x, release/2.x ]
paths-ignore:
- 'doc/**'
- '*.md'
jobs:
windows:
runs-on: windows-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Generate test cases
working-directory: ./test/Esprima.Tests.Test262
run: dotnet tool restore && dotnet test262 generate && dotnet run -c Release -- --update-allow-list
- name: Test
run: dotnet test --configuration Release --logger GitHubActions
linux:
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Generate test cases
working-directory: ./test/Esprima.Tests.Test262
run: dotnet tool restore && dotnet test262 generate && dotnet run -c Release -- --update-allow-list
- name: Test
run: dotnet test --configuration Release --logger GitHubActions