Skip to content

Commit 9c9c03b

Browse files
committedOct 2, 2023
chore: Fix CI condition
1 parent 92c6be7 commit 9c9c03b

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed
 

‎.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ jobs:
827827
- cargo-test
828828
- node-test
829829
- integration-test
830-
if: always()
830+
if: ${{ always() && (github.event_name != 'push' || github.ref != 'refs/heads/master') }}
831831
runs-on: ubuntu-latest
832832
name: Done
833833
steps:

‎packages/html/.npmignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,10 @@ yarn.lock
99
package-lock.json
1010
*.log
1111
.idea/
12-
wasm/
12+
wasm/
13+
14+
# Built files
15+
*.node
16+
.tsbuildinfo
17+
artifacts/
18+
scripts/npm/

‎packages/minifier/.npmignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,10 @@ yarn.lock
99
package-lock.json
1010
*.log
1111
.idea/
12-
wasm/
12+
wasm/
13+
14+
# Built files
15+
*.node
16+
.tsbuildinfo
17+
artifacts/
18+
scripts/npm/

‎packages/xml/.npmignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,10 @@ yarn.lock
99
package-lock.json
1010
*.log
1111
.idea/
12-
wasm/
12+
wasm/
13+
14+
# Built files
15+
*.node
16+
.tsbuildinfo
17+
artifacts/
18+
scripts/npm/

0 commit comments

Comments
 (0)
Please sign in to comment.