-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
5 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: CI | ||
name: Build | ||
on: pull_request | ||
jobs: | ||
build: | ||
|
@@ -11,4 +11,4 @@ jobs: | |
cmd: install # will run `yarn install` command | ||
- uses: borales/[email protected] | ||
with: | ||
cmd: build # will run `yarn build` command | ||
cmd: build # will run `yarn build` command |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
name: build and push code | ||
name: CI | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
git-push: | ||
name: build and push | ||
name: Build and push | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -29,8 +25,8 @@ jobs: | |
user-email: [email protected] | ||
target-branch: main | ||
sync-branches: | ||
name: Sync main -> develop | ||
runs-on: ubuntu-latest | ||
name: Syncing develop branch with main | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|