Skip to content

Testing e2e disable user #141

Testing e2e disable user

Testing e2e disable user #141

Workflow file for this run

# This workflow will build a Node project with NPM and then push its Docker image to DockerHub
name: CI/CD
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: '18.x'
- name: Test and build
run: |
docker run --env PROFILE=test -d -p 8080:8080 udlepssoftarch/mypets-gei-api
while ! nc -z localhost 8080; do sleep 10; done
docker ps -a
npm ci
npm run lint
npx start-server-and-test start http-get://localhost:4200 'cypress run --record --key ${{ secrets.CYPRESS_KEY }}'
npm run build -- --configuration production
- name: Login to DockerHub
if: success() && github.ref == 'refs/heads/main'
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push to Docker Hub
if: success() && github.ref == 'refs/heads/main'
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: |
udlepssoftarch/mypets-gei:${{ github.sha }}
udlepssoftarch/mypets-gei:latest