Skip to content

Commit 9c9c03b

Browse files
committed
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 7 additions & 1 deletion
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

Lines changed: 7 additions & 1 deletion
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

Lines changed: 7 additions & 1 deletion
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)