We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2a6b47 commit 723bf63Copy full SHA for 723bf63
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,30 @@
1
+# Test our contract integration with Lamington and the EOSIO network
2
+name: Integration Tests
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
+jobs:
9
+ lamington:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ node-version: [14.x]
14
+ steps:
15
+ # Clone repo and checkout project
16
+ - name: Fetch source
17
+ uses: actions/checkout@v2
18
+ # Configure environment
19
+ - name: Setup Node.js ${{ matrix.node-version }}
20
+ uses: actions/setup-node@v1
21
+ with:
22
+ node-version: ${{ matrix.node-version }}
23
+ check-latest: true
24
+ # Install dependencies
25
+ - name: Install dependencies
26
+ run: yarn
27
+ # Run unit tests
28
+ - name: Run unit tests
29
+ run: yarn test
30
+ timeout-minutes: 10
0 commit comments