This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
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
1 parent
c885923
commit c44eaf9
Showing
6 changed files
with
873 additions
and
47 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,24 +1,24 @@ | ||
#name: Integration | ||
# | ||
#on: | ||
# push: | ||
# branches: [ master ] | ||
# pull_request: | ||
# branches: [ dev ] | ||
# | ||
#jobs: | ||
# | ||
# build: | ||
# name: Build | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# | ||
# - name: Build the Docker image | ||
# run: docker-compose build | ||
# | ||
# - name: Start the application | ||
# run: docker-compose up -d | ||
# | ||
# - name: start the integration tests | ||
# run: docker-compose -f integration-tests.yml up | ||
name: Integration | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ dev ] | ||
|
||
jobs: | ||
|
||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Build the Docker image | ||
run: docker-compose build | ||
|
||
- name: Start the application | ||
run: docker-compose up -d | ||
|
||
- name: start the integration tests | ||
run: docker-compose -f integration-tests.yml up |
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
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,9 @@ | ||
#!/bin/bash | ||
|
||
UNAME=$(uname) | ||
if [[ "${UNAME}" == CYGWIN* || "${UNAME}" == MINGW* || "${UNAME}" == MSYS* ]]; then | ||
# If using Git Bash on Windows, it will attempt to transform paths to windows Paths. Setting MSYS_NO_PATHCONV stops this process | ||
export MSYS_NO_PATHCONV=1 | ||
fi | ||
|
||
docker run --rm -v .:/client -w /client node:12-slim bash -c "npm install" |
Oops, something went wrong.