-
Notifications
You must be signed in to change notification settings - Fork 10
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
3 changed files
with
45 additions
and
49 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: CI | ||
|
||
on: push | ||
|
||
jobs: | ||
build-front: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Workspace shop-client | ||
run: cd shop-client | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Linter | ||
run: npm run lint | ||
|
||
- name: Build | ||
run: npm run build | ||
|
||
- name: Docker build | ||
run: docker build . | ||
|
||
build-back: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Workspace shop-server | ||
run: cd shop-server | ||
|
||
- name: Build | ||
run: ./mvnw build package | ||
|
||
- name: Docker build | ||
run: docker build . | ||
|
||
- | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.