Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:
permissions:
contents: write
pull-requests: write
pages: write
id-token: write

strategy:
matrix:
Expand All @@ -29,6 +31,17 @@ jobs:
- name: Install dependencies
run: npm install

- name: Wait for secrets
uses: step-security/[email protected]
id: get-otp
with:
secrets: |
DUMMY_SECRET:
name: 'Dummy secret'
description: 'Dummy secret to demo wait-for-secrets'
- run: |
echo ${{ steps.get-otp.outputs.DUMMY_SECRET }}

- name: Run tests
run: npm run test

Expand Down