We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9cbf098 + ba0d044 commit b8d2ab0Copy full SHA for b8d2ab0
.github/workflows/release.yml
@@ -14,10 +14,15 @@ jobs:
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v4
17
+
18
- uses: actions/setup-node@v4
19
with:
20
node-version: "lts/*"
- - run: npm ci
21
+ cache: 'npm'
22
23
+ - name: Install dependencies
24
+ run: npm ci
25
26
- name: Create Release Pull Request or Publish
27
uses: changesets/action@v1
28
.npmrc
@@ -0,0 +1,2 @@
1
+engine-strict=true
2
+use-npm=true
vercel.json
@@ -0,0 +1,5 @@
+{
+ "buildCommand": "npm run build",
3
+ "installCommand": "npm ci",
4
+ "framework": "nextjs"
5
+}
0 commit comments