Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Jan 20, 2024
1 parent 9fd9d3d commit 0eb714b
Showing 1 changed file with 21 additions and 20 deletions.
41 changes: 21 additions & 20 deletions .github/workflows/ethereum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,25 @@ name: ethereum
on: [push, pull_request]

jobs:
tests:
runs-on: ubuntu-latest
tests:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install packages
uses: actions/setup-node@v3
with:
node-version: "20.x"
- run: yarn --ignore-scripts
shell: bash
- name: Create local node and deploy
run: |
cp .env.github .env &&
yarn hardhat node &
sleep 2 &&
yarn deploy:localhost
working-directory: ./ethereum/fly
- name: tests
run: yarn hardhat test
working-directory: ./ethereum/fly
steps:
- uses: actions/checkout@v3
- name: Install packages
uses: actions/setup-node@v3
with:
node-version: "20.x"
- run: yarn --ignore-scripts
shell: bash
working-directory: ./ethereum/fly
- name: Create local node and deploy
run: |
cp .env.github .env &&
yarn hardhat node &
sleep 2 &&
yarn deploy:localhost
working-directory: ./ethereum/fly
- name: tests
run: yarn hardhat test
working-directory: ./ethereum/fly

0 comments on commit 0eb714b

Please sign in to comment.