Skip to content

Commit 449869e

Browse files
authored
Merge pull request #690 from Shopify/update_shopify_dependencies
Update Shopify dependencies and add a CI step to ensure installs work
2 parents ba82c1c + a32f2c1 commit 449869e

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

.github/workflows/ci.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on: [push, pull_request]
2+
3+
name: CI
4+
5+
jobs:
6+
CI:
7+
name: CI_Node_${{ matrix.version }}
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
version: [18, 20]
12+
steps:
13+
- uses: actions/checkout@master
14+
- uses: actions/setup-node@v3
15+
with:
16+
node-version: ${{ matrix.version }}
17+
- name: Install
18+
run: yarn install

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
"@shopify/app": "^3.57.1",
2929
"@shopify/cli": "^3.57.1",
3030
"@shopify/polaris": "^12.0.0",
31-
"@shopify/shopify-api": "^9.5.1",
32-
"@shopify/shopify-app-remix": "^2.5.0",
33-
"@shopify/shopify-app-session-storage-prisma": "^4.0.2",
31+
"@shopify/shopify-api": "^10.0.0",
32+
"@shopify/shopify-app-remix": "^2.8.2",
33+
"@shopify/shopify-app-session-storage-prisma": "^4.0.5",
3434
"isbot": "^5.1.0",
3535
"prisma": "^5.11.0",
3636
"react": "^18.2.0",

0 commit comments

Comments
 (0)