Skip to content

Commit

Permalink
Debug pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Wenger committed Jan 2, 2025
1 parent 2af7661 commit c397fce
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm ci
- run: npm ci --include=dev

# Step to retrieve the bearer token
- name: Retrieve bearer token
Expand All @@ -24,6 +24,9 @@ jobs:
token=$(echo $response | jq -r '.access_token')
echo "BEARER_TOKEN=${token}" >> $GITHUB_ENV
- name: Check Packages
run: ls node_modules/.bin

# Use the bearer token as an environment variable in the npm test command
- name: Run npm test with bearer token
run: npm run test
Expand Down

0 comments on commit c397fce

Please sign in to comment.