Skip to content

Commit 32fa67e

Browse files
committed
chore: add GRE test to GitHub actions
Signed-off-by: Tomás Migone <[email protected]>
1 parent 455aa4e commit 32fa67e

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

.github/workflows/gre.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Run GRE tests
2+
3+
on:
4+
push:
5+
branches: [dev]
6+
pull_request: {}
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
strategy:
13+
matrix:
14+
node-version: [16.x]
15+
16+
steps:
17+
- uses: actions/checkout@v3
18+
- name: Use Node.js ${{ matrix.node-version }}
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: ${{ matrix.node-version }}
22+
- name: Install packages
23+
run: yarn install --non-interactive --frozen-lockfile
24+
- name: Run GRE tests
25+
run: yarn test:gre

gre/test/fixture-projects/default-config/hardhat.config.js

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
networks: {
3+
mainnet: {
4+
chainId: 1,
5+
url: `https://mainnet.infura.io/v3/123456`,
6+
},
7+
},
8+
}

0 commit comments

Comments
 (0)