Skip to content

Commit

Permalink
ci(build, test): run if relevant
Browse files Browse the repository at this point in the history
  • Loading branch information
MarsiBarsi committed Dec 8, 2020
1 parent b1de250 commit de96918
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
name: Build all packages of Taiga UI

on: push
on:
push:
paths:
- 'projects/**'
- '!projects/*testing/**'
- '!projects/demo/**'
- '!projects/icons/**'
- 'angular.json'
- 'package.json'
- 'tsconfig*'

jobs:
build:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
name: Test all packages of Taiga UI and check coverage with Coveralls

on: push
on:
push:
paths:
- 'projects/**'
- '!projects/*testing/**'
- '!projects/demo/**'
- '!projects/icons/**'
- 'angular.json'
- 'package.json'
- 'tsconfig*'

jobs:
test:
Expand Down

0 comments on commit de96918

Please sign in to comment.