Skip to content

Commit

Permalink
v0.27.0
Browse files Browse the repository at this point in the history
make separate job for tests
  • Loading branch information
nmanu1 committed Oct 30, 2023
1 parent 296cefb commit 62e7faf
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
# branches: main

jobs:
release:
check-for-release:
runs-on: ubuntu-latest
# if: startsWith(github.event.head_commit.message, 'simple')
steps:
Expand Down Expand Up @@ -49,5 +49,18 @@ jobs:
echo "Error running the bump-version.mjs script."
cat temp-bump-versions.txt
exit 1
- name: run tests
uses: ./.github/workflows/run-tests.yml
# - uses: ./.github/setup-ci
# - name: check linting
# run: |
# npm run autofix
# if git diff --exit-code
# exit 0
# fi
# echo "Found unexpected git diff from running `npm run autofix`."
# exit 1
# - name: run tests
# uses: ./.github/workflows/run-tests.yml

run-tests:
needs: check-for-release
uses: ./.github/workflows/run-tests.yml

0 comments on commit 62e7faf

Please sign in to comment.