Bump js-yaml from 4.1.1 to 4.3.0 #91
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: CI out of support | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths-ignore: | |
| - 'samples/*' | |
| - 'stress/*' | |
| - 'performance/*' | |
| - '.github/FUNDING.YML' | |
| - '.github/workflows/ci.yml' | |
| - '.github/workflows/build.yml' | |
| - '.github/workflows/build*.yml' | |
| - '.github/workflows/publish*.yml' | |
| - '.github/actions/test-build/action.yml' | |
| - '.github/actions/build*/*.*' | |
| - '.github/actions/build/*.*' | |
| - '**/*.md' | |
| - '**/*.d.ts' | |
| - '**/*.bat' | |
| - '.travis.yml' | |
| - 'Dockerfile' | |
| - '.gitconfig' | |
| - '.gitignore' | |
| - 'appveyor*.*' | |
| - 'LICENSE*' | |
| - '.idea/**' | |
| - '.vscode/**' | |
| - '*.bat' | |
| - '*.nuspec' | |
| - 'tools/nuget/*' | |
| - '.npmignore' | |
| - 'test/config.json' | |
| - 'test/double' | |
| - '.circleci' | |
| - '.circleci/*' | |
| - 'README.md' | |
| - '*.sln' | |
| - '*.vcxproj' | |
| - 'tools/build.js' | |
| - 'tools/electron_42_patch.js' | |
| push: | |
| branches-ignore: | |
| - 'circleci' | |
| paths-ignore: | |
| - 'samples/*' | |
| - 'stress/*' | |
| - 'performance/*' | |
| - '.github/FUNDING.YML' | |
| - '.github/workflows/ci.yml' | |
| - '.github/workflows/build.yml' | |
| - '.github/workflows/build*.yml' | |
| - '.github/workflows/publish*.yml' | |
| - '.github/actions/test-build/action.yml' | |
| - '.github/actions/build*/*.*' | |
| - '.github/actions/build/*.*' | |
| - '**/*.md' | |
| - '**/*.d.ts' | |
| - '**/*.bat' | |
| - '.travis.yml' | |
| - 'Dockerfile' | |
| - '.gitconfig' | |
| - '.gitignore' | |
| - 'appveyor*.*' | |
| - 'LICENSE*' | |
| - '.idea/**' | |
| - '.vscode/**' | |
| - '*.bat' | |
| - '*.nuspec' | |
| - 'tools/nuget/*' | |
| - '.npmignore' | |
| - 'test/config.json' | |
| - 'test/double' | |
| - '.circleci' | |
| - '.circleci/*' | |
| - 'README.md' | |
| - '*.sln' | |
| - '*.vcxproj' | |
| - 'tools/build.js' | |
| - 'tools/electron_42_patch.js' | |
| env: | |
| ACTIONS_ALLOW_UNSECURE_COMMANDS: true # required to setup CSC | |
| DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
| DOTNET_NOLOGO: 1 | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-15-intel, macos-15, ubuntu-22.04, ubuntu-22.04-arm] | |
| electron: [32.3.3, 33.4.11, 34.5.8, 35.7.5, 36.9.5] | |
| name: test-${{ matrix.os }}-v${{ matrix.electron }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - if: runner.os == 'macOS' | |
| name: Cache node-gyp macOS | |
| uses: actions/cache@v5 | |
| env: | |
| cache-name: cache-node-gyp | |
| with: | |
| path: ~/Library/Caches/node-gyp/ | |
| key: 'node-gyp-${{ runner.os }}-${{ runner.arch }}-${{ matrix.electron }}' | |
| - name: Setup env | |
| uses: ./.github/actions/setup-env | |
| with: | |
| electron: ${{ matrix.electron }} | |
| os: ${{ matrix.os }} | |
| replace-version: true | |
| - if: runner.os == 'Linux' || runner.os == 'macOS' | |
| name: Check electron-edge-js build file | |
| id: check_build | |
| uses: andstor/file-existence-action@v3 | |
| with: | |
| files: "build/Release/edge_coreclr.node" | |
| fail: true | |
| ignore_case: true | |
| - if: runner.os == 'macOS' || runner.os == 'Windows' | |
| name: Run .NET 4.5/Mono tests | |
| run: node tools/test.js CI | |
| timeout-minutes: 10 | |
| - if: runner.os == 'macOS' || runner.os == 'Windows' | |
| name: "Run .net core tests" | |
| run: node tools/test.js CI | |
| timeout-minutes: 10 | |
| env: | |
| EDGE_USE_CORECLR: 1 | |
| # - if: runner.os == 'Linux' | |
| # name: Run Mono tests | |
| # timeout-minutes: 10 | |
| # run: | | |
| # export DISPLAY=:99 | |
| # echo "DISPLAY=:99" >> $GITHUB_ENV | |
| # Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | |
| # sleep 3 | |
| # node tools/test.js CI | |
| - if: runner.os == 'Linux' | |
| name: "Run .net core tests Linux" | |
| timeout-minutes: 10 | |
| run: | | |
| export DISPLAY=:99 | |
| echo "DISPLAY=:99" >> $GITHUB_ENV | |
| Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | |
| sleep 3 | |
| node tools/test.js CI | |
| env: | |
| EDGE_USE_CORECLR: 1 | |
| - name: Test report | |
| uses: ./.github/actions/create-test-report | |
| with: | |
| electron: ${{ matrix.electron }} | |
| os: ${{ matrix.os }} | |