Skip to content

Commit 705bb05

Browse files
authored
Merge pull request #121 from AlchemyCMS/dependabot/npm_and_yarn/vite-7.1.4
Bump vite from 7.0.6 to 7.1.4
2 parents 403597d + 1440f3e commit 705bb05

3 files changed

Lines changed: 247 additions & 206 deletions

File tree

.github/workflows/build.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
Build:
11+
runs-on: ubuntu-24.04
12+
env:
13+
NODE_ENV: production
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Restore node modules cache
17+
uses: actions/cache@v4
18+
with:
19+
path: node_modules
20+
key: ${{ runner.os }}-pnpm-${{ hashFiles('./package.json') }}
21+
restore-keys: |
22+
${{ runner.os }}-pnpm-
23+
- name: Install pnpm
24+
uses: pnpm/action-setup@v4
25+
- name: Install dependencies
26+
run: pnpm install
27+
- name: Build package
28+
run: pnpm run build

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"type": "git",
88
"url": "git+https://github.com/AlchemyCMS/alchemy-json_api.git"
99
},
10+
"engines" : {
11+
"node" : ">=20.19.0"
12+
},
1013
"keywords": [
1114
"AlchemyCMS",
1215
"json:api",

0 commit comments

Comments
 (0)