Skip to content

Commit e5295ca

Browse files
tests
1 parent f2d6b60 commit e5295ca

File tree

2 files changed

+8
-23
lines changed

2 files changed

+8
-23
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,10 @@ jobs:
3333
with:
3434
node-version: 22.16
3535

36-
- name: Enable Corepack
37-
run: |
38-
npm install -g corepack@latest
39-
corepack enable pnpm
40-
41-
- name: Install Dependencies
42-
uses: ./.github/ci/actions/npm-install
36+
- uses: pnpm/action-setup@v4
37+
name: Install pnpm
4338
with:
44-
client: pnpm
45-
39+
version: 10
4640

4741
- name: Has changesets
4842
uses: bluwy/detect-changesets-action@v1

.github/workflows/test.yaml

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ on:
99

1010
env:
1111
SECRETS: ${{ toJSON(secrets) }}
12-
JOURNEY_PDF_KEY: ${{ secrets.JOURNEY_PDF_KEY }}
13-
JOURNEY_PDF_BUCKET: ${{ secrets.JOURNEY_PDF_BUCKET }}
14-
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
15-
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
1612

1713
jobs:
1814
run-tests:
@@ -30,22 +26,17 @@ jobs:
3026
- name: Setup NodeJS
3127
uses: actions/setup-node@v4
3228
with:
33-
node-version: 22.15
29+
node-version: 22.16
3430

35-
- name: Enable Corepack
36-
run: |
37-
npm install -g corepack@latest
38-
corepack enable pnpm
39-
pnpm -v
31+
- uses: pnpm/action-setup@v4
32+
name: Install pnpm
33+
with:
34+
version: 10
4035

4136
- name: Install Dependencies
4237
uses: ./.github/ci/actions/npm-install
4338
with:
4439
client: pnpm
4540

46-
- name: Build
47-
shell: bash
48-
run: pnpm build
49-
5041
- name: Test
5142
run: pnpm test

0 commit comments

Comments
 (0)