File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,6 @@ description: Installs dependencies and builds OpenNext
3
3
runs :
4
4
using : ' composite'
5
5
steps :
6
- - name : Install dependencies
7
- run : pnpm install
8
- shell : bash
9
-
10
6
# Build only the @opennextjs/aws package + its monorepo dependencies
11
7
- name : Build
12
8
shell : bash
File renamed without changes.
Original file line number Diff line number Diff line change 16
16
node-version : 20.19.4
17
17
cache : " pnpm"
18
18
registry-url : " https://registry.npmjs.org"
19
-
19
+
20
20
# Get pnpm store path so we can cache it
21
21
- name : Get pnpm store directory
22
22
shell : bash
29
29
path : ${{ env.STORE_PATH }}
30
30
key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
31
31
restore-keys : |
32
- ${{ runner.os }}-pnpm-store-
32
+ ${{ runner.os }}-pnpm-store-
33
+
34
+ - name : Install dependencies
35
+ run : pnpm install
36
+ shell : bash
Original file line number Diff line number Diff line change 16
16
- name : Checkout
17
17
uses : actions/checkout@v4
18
18
- uses : ./.github/actions/setup
19
- - uses : ./.github/actions/build
20
19
- uses : ./.github/actions/lint
21
20
- uses : ./.github/actions/test
22
- - uses : ./.github/actions/e2e-local
21
+ - uses : ./.github/actions/local/build
22
+ - uses : ./.github/actions/local/e2e
You can’t perform that action at this time.
0 commit comments