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 866ec62 commit 62fdd26Copy full SHA for 62fdd26
.fernignore
@@ -2,6 +2,7 @@
2
3
README.md
4
5
+.github/workflows/integration.yml
6
src/wrapper
7
src/index.ts
8
src/errors/SquareError.ts
.github/workflows/integration.yml
@@ -0,0 +1,20 @@
1
+name: ci
+
+on: [push]
+jobs:
+ integration:
+ env:
+ TEST_SQUARE_TOKEN: ${{ secrets.TEST_SQUARE_TOKEN }}
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout repo
12
+ uses: actions/checkout@v3
13
14
+ - name: Set up node
15
+ uses: actions/setup-node@v3
16
17
+ - name: Run integration tests
18
+ # TODO: Replace the following 'run' statement with the following when TEST_SQUARE_TOKEN secret exists.
19
+ # run: yarn && yarn test:integration
20
+ run: yarn
0 commit comments