Skip to content

Commit

Permalink
try CI tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
0age committed Dec 6, 2024
1 parent 7e5ce87 commit 38de231
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,15 @@ jobs:
version: 9.14.4

- name: Get pnpm store directory
id: pnpm-store-path
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
echo "STORE_PATH=$(pnpm store path --silent)" >> "$GITHUB_OUTPUT"
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
path: ${{ steps.pnpm-store-path.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
Expand Down Expand Up @@ -68,8 +69,6 @@ jobs:
PRIVATE_KEY: '0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80'
DOMAIN: 'smallocator.example'
BASE_URL: 'https://smallocator.example'
DATABASE_URL: 'sqlite::memory:'
SKIP_SIGNING_VERIFICATION: 'true'
NODE_ENV: 'test'
run: |
mkdir -p test-data
Expand All @@ -83,7 +82,5 @@ jobs:
PRIVATE_KEY: '0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80'
DOMAIN: 'smallocator.example'
BASE_URL: 'https://smallocator.example'
DATABASE_URL: 'sqlite::memory:'
SKIP_SIGNING_VERIFICATION: 'true'
NODE_ENV: 'test'
run: pnpm smoke-test

0 comments on commit 38de231

Please sign in to comment.