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.
1 parent 07ede7e commit 70d0769Copy full SHA for 70d0769
.github/workflows/build-and-test.yml
@@ -114,6 +114,20 @@ jobs:
114
- name: Checkout branch
115
uses: actions/checkout@v4
116
117
+ - name: Create ShopifySharp.Tests.Integration/appsettings.local.json
118
+ run: |
119
+ cat <<EOF > ShopifySharp.Tests.Integration/appsettings.local.json
120
+ {
121
+ "ShopifySharp": {
122
+ "Credentials": {
123
+ "ShopDomain": "${{ secrets.SHOPIFYSHARP_MY_SHOPIFY_URL }}",
124
+ "AccessToken": "${{ secrets.SHOPIFYSHARP_ACCESS_TOKEN }}",
125
+ "ApiKey": "${{ secrets.SHOPIFYSHARP_API_KEY }}"
126
+ }
127
128
129
+ EOF
130
+
131
- name: Execute unit test script
132
run: fish .github/scripts/test.fish
133
shell: bash
0 commit comments