test the workflow #47
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: 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 |