Commit a7397eb 1 parent 3e9295d commit a7397eb Copy full SHA for a7397eb
File tree 1 file changed +3
-9
lines changed
1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change 9
9
- ' .github/**'
10
10
- ' .vscode/**'
11
11
- ' packages/**/.vscode/**'
12
- workflow_dispatch :
13
- inputs :
14
- skip_tests :
15
- description : ' Skip integration tests'
16
- type : boolean
17
- default : false
18
12
19
13
jobs :
20
14
integration-tests :
21
- if : " ( !contains(github.event.head_commit.author.name, 'GITHUBACTION') && github.event_name == 'push') || (github.event_name == 'workflow_dispatch' && !inputs.skip_tests )"
15
+ if : " !contains(github.event.head_commit.author.name, 'GITHUBACTION')"
22
16
name : Ensuring integration tests pass before publishing
23
17
uses : ./.github/workflows/wf_test-integration.yml
24
18
secrets : inherit
25
19
26
20
publish-npm :
27
- if : " !contains(github.event.head_commit.author.name, 'GITHUBACTION') || github.event_name == 'workflow_dispatch' "
21
+ if : " !contains(github.event.head_commit.author.name, 'GITHUBACTION')"
28
22
name : Publish to npm
29
- # needs: [ integration-tests]
23
+ needs : integration-tests
30
24
runs-on : ubuntu-latest
31
25
steps :
32
26
- uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments