Skip to content

Fix NuGetApiKey detection to not require Guid bytes (#101) #343

Fix NuGetApiKey detection to not require Guid bytes (#101)

Fix NuGetApiKey detection to not require Guid bytes (#101) #343

name: Test Marvin (NodeJS)
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test Marvin (${{ matrix.nodeVersion }} x ${{ matrix.os }})
timeout-minutes: 5
defaults:
run:
working-directory: ./src/security-utilities-node
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
nodeVersion: [18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.nodeVersion }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30