Skip to content

JwtToken validation skipped if not present for mobile request also Null condition Added for API #122

JwtToken validation skipped if not present for mobile request also Null condition Added for API

JwtToken validation skipped if not present for mobile request also Null condition Added for API #122

Workflow file for this run

name: Package
on:
push:
branches: [ "develop"]
paths-ignore:
- target/**
pull_request:
branches: [ "develop" ]
paths-ignore:
- target/**
env:
ENV_VAR: test
jobs:
Package-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
- name: Build with Maven
run: mvn clean install -DENV_VAR=${{ env.ENV_VAR }}
- name: Build WAR file
run: mvn -B package --file pom.xml
- name: Upload WAR file as artifact
uses: actions/upload-artifact@v4
with:
name: TM-API
path: target/tmapi-v1.0.war