Skip to content

Minor changes

Minor changes #5

Workflow file for this run

name: Integration
on:
pull_request:
branches: ['master']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Load .env.test File
uses: xom9ikk/dotenv@v2
with:
mode: test
- name: test:e2e
run: npm run test:e2e:ci
- name: test:int
run: npm run test:int:ci
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and Upload Images to Docker Hub
run: npm run build:docker