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 bd9a99e commit 613488c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Main
on: push

env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
ACTIONS_ALLOW_UNSECURE_COMMANDS: true # required to setup CSC

jobs:
main:
Expand All @@ -23,7 +23,7 @@ jobs:
node-version: '20.x'

- if: runner.os == 'Windows'
name: Setup CSC
name: Setup CSC for Windows
uses: yoavain/Setup-CSC@v5

- name: Setup dotnet
Expand Down Expand Up @@ -52,7 +52,8 @@ jobs:
name: Run Windows tests
run: |
npm test
SET EDGE_USE_CORECLR=1 & npm test
echo "1" | Out-File -FilePath $env:EDGE_USE_CORECLR -Append
npm test
- if: runner.os == 'Linux'
name: Run Linux tests
run: EDGE_USE_CORECLR=1 npm test
Expand Down

0 comments on commit 613488c

Please sign in to comment.