Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Jul 6, 2023
1 parent c69a708 commit ca8e56c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/vercel-serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
cache: "pnpm"

- name: Install pnpm Dependencies
run: npm install
run: pnpm install

- name: Deploy to Vercel Serverless
run: npm run deploy.vercel -- --token=${{ secrets.VERCEL_QWIK_CITY_E2E_TOKEN }}
run: pnpm run deploy.vercel --token=${{ secrets.VERCEL_QWIK_CITY_E2E_TOKEN }}
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_SERVERLESS_PROJECT_ID }}
Expand All @@ -34,7 +34,7 @@ jobs:
run: npx playwright install chromium --with-deps

- name: Test Vercel Serverless MPA
run: npm run test.vercel-serverless.mpa
run: pnpm run test.vercel-serverless.mpa

- name: Test Vercel Serverless SPA
run: npm run test.vercel-serverless.spa
run: pnpm run test.vercel-serverless.spa
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@
"test.vercel-serverless.mpa": "cross-env APP=mpa playwright test tests --config playwright.vercel-serverless.config.ts",
"test.vercel-serverless.spa": "cross-env APP=spa playwright test tests --config playwright.vercel-serverless.config.ts",
"qwik": "qwik",
"postinstall": "npm run prebuild.pandacss"
"postinstall": "pnpm prebuild.pandacss"
},
"devDependencies": {
"@azure/static-web-apps-cli": "^1.1.3",
"@builder.io/qwik": "BuilderIo/qwik-build#main",
"@builder.io/qwik-city": "file:./fake_modules/lib",
"@builder.io/qwik-city": "BuilderIo/qwik-build#main",
"@builder.io/qwik-react": "0.5.0",
"@builder.io/vite-plugin-macro": "~0.0.7",
"@emotion/react": "11.11.1",
Expand Down

0 comments on commit ca8e56c

Please sign in to comment.