Skip to content

Commit ba0d044

Browse files
committed
chore: add .npmrc and vercel.json for project configuration
1 parent daa5b0e commit ba0d044

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,15 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
17+
1718
- uses: actions/setup-node@v4
1819
with:
1920
node-version: "lts/*"
20-
- run: npm ci
21+
cache: 'npm'
22+
23+
- name: Install dependencies
24+
run: npm ci
25+
2126
- name: Create Release Pull Request or Publish
2227
uses: changesets/action@v1
2328
with:

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
engine-strict=true
2+
use-npm=true

vercel.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"buildCommand": "npm run build",
3+
"installCommand": "npm ci",
4+
"framework": "nextjs"
5+
}

0 commit comments

Comments
 (0)