Skip to content

Commit 8035693

Browse files
committed
Configuration update for aws
1 parent f1dbabd commit 8035693

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

.github/workflows/aws-publish.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,6 @@ jobs:
1212
id-token: write # Required for OIDC
1313
contents: read # Required to fetch repo contents
1414
steps:
15-
# Step 0: Cache node_modules and Vite cache
16-
- name: Cache node_modules and Vite cache
17-
uses: actions/cache@v4
18-
with:
19-
path: |
20-
node_modules
21-
**/.vite
22-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
23-
restore-keys: |
24-
${{ runner.os }}-node-
25-
2615
# Step 1: Checkout the code
2716
- name: Checkout code
2817
uses: actions/checkout@v4
@@ -39,12 +28,9 @@ jobs:
3928
- name: Install dependencies
4029
run: npm ci --include=dev
4130

42-
- name: Echo before build
43-
run: echo "Starting build step..."
44-
4531
# Step 4: Build the project
4632
- name: Build package
47-
run: NODE_OPTIONS="--max_old_space_size=4096" npm run build
33+
run: npm run build
4834

4935
# Step 5: Configure AWS credentials via OIDC
5036
- name: Configure AWS credentials

0 commit comments

Comments
 (0)