Skip to content

Commit 2788f60

Browse files
committed
chore(ci): testC,testJs: run iff src/,tests/,./*.nimble, !feat-* branch
1 parent be5332b commit 2788f60

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

.github/workflows/testC.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
name: testC
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches-ignore:
5+
- 'feat-*'
6+
paths:
7+
- 'src/**'
8+
- './*.nimble'
9+
- 'tests/**'
10+
pull_request:
311
env:
412
nim-version: 'stable'
513
jobs:
614
build:
715
runs-on: ubuntu-latest
8-
if: "! contains(github.event.head_commit.message, '[skip ci]')"
916
steps:
1017
- uses: actions/checkout@v4
1118
- name: Cache nimble

.github/workflows/testJs.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
name: testJs
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches-ignore:
5+
- 'feat-*'
6+
paths:
7+
- 'src/**'
8+
- './*.nimble'
9+
- 'tests/**'
10+
pull_request:
311
env:
412
nim-version: 'stable'
513
jobs:
614
build:
715
runs-on: ubuntu-latest
8-
if: "! contains(github.event.head_commit.message, '[skip ci]')"
916
steps:
1017
- uses: actions/checkout@v4
1118
- name: Cache nimble

0 commit comments

Comments
 (0)