Skip to content

Commit

Permalink
refactor(ci): rename workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
remiroyc committed May 31, 2023
1 parent e0e8abd commit 590fd50
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 31 deletions.
25 changes: 23 additions & 2 deletions .github/workflows/starknet.yml → .github/workflows/contracts.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Starknet
name: Contracts

on:
push:
Expand All @@ -10,7 +10,7 @@ env:
SCARB_VERSION: v0.2.0-alpha.2

jobs:
build:
build-starknet-contracts:
name: build
runs-on: ubuntu-latest
steps:
Expand All @@ -24,3 +24,24 @@ jobs:
- run: scarb build
working-directory: apps/blockchain

test-ethereum-contracts:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "14.x"

- name: Install dependencies
run: yarn install

- name: Compile contracts
run: yarn build

- name: Test contracts
run: yarn test
29 changes: 0 additions & 29 deletions .github/workflows/ethereum.yml

This file was deleted.

0 comments on commit 590fd50

Please sign in to comment.