Skip to content

Commit

Permalink
Update test workflow success check
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoH2O1999 committed Feb 2, 2023
1 parent 3314789 commit 7a01c3a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,15 @@ jobs:

check_test_python_build:
needs: test_python_build
if: always()
runs-on: ubuntu-latest
name: Check build is successfull for all Python versions
steps:
- name: Emit result
run: echo "All Python versions have been successfully built and installed..."
- name: Emit failure
if: ${{ needs.test_python_build.result != 'success' }}
run: exit 1
- name: Emit success
run: echo All Python versions have been successfully built and installed...

# CodeQL security scan
codeql:
Expand Down Expand Up @@ -226,7 +230,7 @@ jobs:
cache: npm
- name: Install dependencies
run: npm ci
- name: Build typescript
- name: Build Typescript
run: npm run build
- name: Package with NCC
run: npm run package
Expand Down

0 comments on commit 7a01c3a

Please sign in to comment.