Skip to content

Commit

Permalink
ci(root): enable actions PR on release/** (#249)
Browse files Browse the repository at this point in the history
* ci(root): enable actions PR on release/**

* ci(root): enable actions PR on release/**

* ci(root): enable actions PR on release/**
  • Loading branch information
LouisMazel authored May 2, 2022
1 parent dc6e46e commit b831bd5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/lib-build-pr.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
name: Build Lib Tests
on:
pull_request:
branches: [next]
branches:
- master
- next
- "release/**"
paths:
- "packages/lib/**"

Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/lib-test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@ name: Tests Units

on:
push:
branches: [master, next]
branches:
- master
- next
pull_request:
branches: [master, next]
branches:
- master
- next
- "release/**"

jobs:
coverage:
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/vuepress-build-test.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
name: Build Doc Tests
name: Doc Build Test
on:
pull_request:
branches: [next]
branches:
- master
- next
- "release/**"
paths:
- "packages/docs/**"

jobs:
build-test:
doc-build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vuepress-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Build and Deploy
name: Doc Build and Deploy
on:
push:
branches: [next]
# paths:
# - "packages/docs/**"

jobs:
build-and-deploy:
doc-build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down

0 comments on commit b831bd5

Please sign in to comment.