Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
pakkographic committed Aug 12, 2024
1 parent db2d0c7 commit f158ba9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/dev-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,21 @@ on:
secrets:
NPM_TOKEN:
required: true
TEST_APP_TOKEN:
required: true
workflow_dispatch:

jobs:
lint:
name: ESLint
uses: ./.github/workflows/lint.yml
testing:
name: ESLint
uses: ./.github/workflows/feature-testing.yml
secrets: inherit
publish:
runs-on: ubuntu-latest
needs: [lint]
needs: [lint, testing]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/should-publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ jobs:
uses: ./.github/workflows/dev-publish.yml
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
TEST_APP_TOKEN: ${{ secrets.TEST_APP_TOKEN }}

0 comments on commit f158ba9

Please sign in to comment.