Skip to content

Commit

Permalink
updating github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Mar 16, 2024
1 parent a179ec1 commit 6c80b48
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2

- if: runner.os == 'Windows'
name: testing variables
run: |
echo "EDGE_USE_CORECLR=1" >> $GITHUB_ENV
echo "${{ env.EDGE_USE_CORECLR }}"
echo "EDGE_USE_CORECLR=" | Out-File -FilePath $env:GITHUB_ENV -Append
echo "${{ env.EDGE_USE_CORECLR }}"
- name: Setup NodeJS
uses: actions/setup-node@v2
Expand All @@ -38,17 +46,6 @@ jobs:
sudo pkgutil --forget com.xamarin.mono-MDK.pkg
sudo rm /etc/paths.d/mono-commands
- if: runner.os == 'Windows'
name: testing variables
run: |
echo "EDGE_USE_CORECLR=1" | Out-File -FilePath $env:GITHUB_ENV -Append
echo "${{ env.EDGE_USE_CORECLR }}"
echo "EDGE_USE_CORECLR=" | Out-File -FilePath $env:GITHUB_ENV -Append
echo "${{ env.EDGE_USE_CORECLR }}"
- if: ${{ (runner.os == 'Linux') || (runner.os == 'macOS') }}
name: Run tests
run: echo condition

- if: runner.os == 'Windows'
name: Install Windows dependencies
Expand Down

0 comments on commit 6c80b48

Please sign in to comment.