Skip to content

Commit 723bf63

Browse files
authored
build/test-pipeline
### Features - None ### Foundation - Added integration tests with Lamington
1 parent a2a6b47 commit 723bf63

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
branches: [ master ]
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

Comments
 (0)