Skip to content

test the workflow

test the workflow #47

Workflow file for this run

name: Jest Unit Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
environment: Dev Test
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run Jest tests
# Set environment variables for this step
env:
PORT: ${{ env.PORT }} # Assuming PORT is configured at the environment level
JWTKey : ${{ secrets.JWTKEY }} # Access secret from the environment
MongoConnectionString : ${{ secrets.MONGOCONNECTIONSTRING }} # Access secret from the environment
run: npm test
- uses: actions/upload-artifact@v3
if: always()
with:
name: junit results
path: ./test-results
retention-days: 30