Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Ephigenia committed Jan 2, 2025
1 parent 70bde5c commit a12314e
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:
pull_request:

jobs:
# https://github.com/github/super-linter
lint:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -38,8 +37,9 @@ jobs:

test:
runs-on: ubuntu-latest
needs: [lint, build]

needs:
- lint
- build
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand Down Expand Up @@ -74,17 +74,14 @@ jobs:
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
target-branch: ${{ github.ref_name }}
release-type: node
- run:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

publish:
if: ${{ needs.release.outputs.release_created }}
runs-on: ubuntu-latest
needs:
- release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand Down

0 comments on commit a12314e

Please sign in to comment.