Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quafadas committed Apr 3, 2024
1 parent 606d403 commit 4dbd177
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,22 +38,21 @@ jobs:
fetch-depth: 0

- name: Cache Playwright dependencies
id: cache-pw
uses: actions/cache@v2
with:
path: /home/runner/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('playwrightVersion.sc') }}
restore-keys: |
playwright-${{ runner.os }}-
- name: Prepare GPG
run: |
echo "allow-loopback-pinentry" >> ~/.gnupg/gpg-agent.conf
gpgconf --reload gpg-agent
- name: Install Playwright
if: ${{ steps.cache-pw.outputs.cache-hit != 'true' }}
run: just setupPlaywright

- name: compile
run: mill __.compile

- name: Test
run: mill project.test

Expand All @@ -79,6 +78,11 @@ jobs:
passphrase: ${{ secrets.PUBLISH_SECRET_KEY_PASSWORD }}
git_config_global: true

- name: Prepare GPG
run: |
echo "allow-loopback-pinentry" >> ~/.gnupg/gpg-agent.conf
gpgconf --reload gpg-agent
- name: List keys
run: gpg -K

Expand Down

0 comments on commit 4dbd177

Please sign in to comment.