Update GH actions/checkout to v4 #483
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
- 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@v4 | |
- 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 |