Skip to content

Commit d080018

Browse files
committed
cleanup
1 parent db27ff8 commit d080018

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,13 @@ inputs:
66
description: 'Node.js version to use'
77
required: false
88
default: '22'
9-
pnpm-version:
10-
description: 'PNPM version to use'
11-
required: false
12-
default: '10.8.0'
139

1410
runs:
1511
using: "composite"
1612
steps:
1713
- name: Install pnpm
14+
# note: version is inferred from the packageManager field in package.json
1815
uses: pnpm/action-setup@v4
19-
with:
20-
version: ${{ inputs.pnpm-version }}
2116

2217
- name: Use Node.js
2318
uses: actions/setup-node@v4

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
- name: Checkout Repo
1818
uses: actions/checkout@v4
1919
- uses: ./.github/actions/setup
20+
- uses: ./.github/actions/test
2021
- name: Deploy (staging)
2122
run: pnpm turbo deploy -- -e staging
2223
env:

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ jobs:
5656
name: published-packages
5757
path: ${{ runner.temp }}
5858
- uses: ./.github/actions/setup
59-
with:
60-
node-version: lts/*
6159
- name: Deploy
6260
run: pnpm runx deploy-workers-production
6361
env:

0 commit comments

Comments
 (0)