Bump Polyfill from 9.3.4 to 9.5.0 #26
Workflow file for this run
This file contains hidden or 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: Validate | |
| permissions: { } | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - 'main' | |
| jobs: | |
| SetupBuildInfo: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| build-name: ${{ steps.SetupBuildInfo.outputs.build-name }} | |
| build-id: ${{ steps.SetupBuildInfo.outputs.build-id }} | |
| build-version: ${{ steps.SetupBuildInfo.outputs.build-version }} | |
| build-timestamp: ${{ steps.SetupBuildInfo.outputs.build-timestamp }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - name: SetupBuildInfo | |
| id: SetupBuildInfo | |
| run: dotnet run --project _atom/_atom.csproj SetupBuildInfo --skip --headless | |
| Pack: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - name: Pack | |
| id: Pack | |
| run: dotnet run --project _atom/_atom.csproj Pack --skip --headless | |
| Test: | |
| strategy: | |
| matrix: | |
| job-runs-on: [ windows-latest, ubuntu-latest, macos-latest ] | |
| test-framework: [ net8.0, net9.0, net10.0 ] | |
| runs-on: ${{ matrix.job-runs-on }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '9.0.x' | |
| - name: Test | |
| id: Test | |
| run: dotnet run --project _atom/_atom.csproj Test --skip --headless | |
| env: | |
| job-runs-on: ${{ matrix.job-runs-on }} | |
| test-framework: ${{ matrix.test-framework }} | |
| build-slice: ${{ matrix.job-runs-on }}-${{ matrix.test-framework }} |