packages #303
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
#name: E2E Tests | |
# | |
##on: | |
## push: | |
## branches: [ master ] | |
# | |
#on: [pull_request] | |
# | |
#jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# | |
# strategy: | |
# matrix: | |
# # see available versions here: https://github.com/actions/setup-java | |
# java-version: [12] | |
# node-version: [20.x] | |
# | |
# steps: | |
# - uses: actions/checkout@v2 | |
# | |
# - name: Cache node modules | |
# uses: actions/cache@v1 | |
# with: | |
# path: ~/.npm | |
# key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
# restore-keys: | | |
# ${{ runner.os }}-node- | |
# | |
# - name: Use Node.js ${{ matrix.node-version }} | |
# uses: actions/setup-node@v1 | |
# with: | |
# node-version: ${{ matrix.node-version }} | |
# | |
# # Step that does that actual cache save and restore | |
# - name: Cache maven modules | |
# uses: actions/cache@v1 | |
# with: | |
# path: ~/.m2/repository | |
# key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
# restore-keys: | | |
# ${{ runner.os }}-maven- | |
# | |
# - name: Set up JDK | |
# uses: actions/setup-java@v1 | |
# with: | |
# java-version: ${{ matrix.java-version }} | |
# | |
# - name: Build E2E | |
# run: | | |
# docker build --build-arg IP="splitman2.fr:8081" -t splitman2_e2e -f Dockerfile_e2e . | |
# | |
# - name: Run E2E | |
# run: | | |
# docker run splitman2_e2e |