Skip to content

Commit

Permalink
fix(ci): move deny-warn
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-jerry-ye committed Dec 3, 2024
1 parent 3186f34 commit 8e3a19c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/next-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
for dir in next/sources/*; do
if [ -d "$dir" ]; then
echo "Processing $dir"
if ! (cd "$dir" && moon install && moon check --target ${{ matrix.backend }} && moon test --target ${{ matrix.backend }}) --deny-warn; then
if ! (cd "$dir" && moon install && moon check --deny-warn --target ${{ matrix.backend }} && moon test --target ${{ matrix.backend }}); then
echo "Failed in $dir"
failed_directories+=("$dir")
fi
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
Get-ChildItem -Path ".\legacy\examples" -Directory | ForEach-Object {
Write-Output "Processing $($_.FullName)"
Set-Location $_.FullName
moon install && moon check --target ${{ matrix.backend }} && moon test --target ${{ matrix.backend }} --deny-warn
moon install && moon check --deny-warn --target ${{ matrix.backend }} && moon test --target ${{ matrix.backend }}
if (!$?) {
Write-Output "Failed in $($_.FullName)"
$failed_directories += $_.FullName
Expand Down

0 comments on commit 8e3a19c

Please sign in to comment.