Skip to content

Commit

Permalink
Merge pull request #17 from valory-xyz/fix/git-workflow
Browse files Browse the repository at this point in the history
Fix git workflow
  • Loading branch information
Tanya-atatakai authored Mar 20, 2024
2 parents 61fab73 + ad0387e commit 96eca86
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/autonolas-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
paths:
- 'apps/autonolas-registry/**'
pull_request:
branches:
- main
paths:
- 'apps/autonolas-registry/**'

Expand All @@ -22,7 +24,6 @@ jobs:
node-version: 18
- name: Install modules
run: yarn
- run: git branch --track main origin/main
- name: Run ESLint
run: yarn nx lint autonolas-registry
- name: Run Test
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tokenomics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
paths:
- 'apps/tokenomics/**'
pull_request:
branches:
- main
paths:
- 'apps/tokenomics/**'

Expand All @@ -24,7 +26,6 @@ jobs:
node-version: 18
- name: Install modules
run: yarn
- run: git branch --track main origin/main
- name: Run ESLint
run: yarn nx lint tokenomics
- name: Run Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { useState, useEffect } from 'react';
import { Tabs } from 'antd';
import { useRouter } from 'next/router';
import { notifyError } from '@autonolas/frontend-library';

import { NAV_TYPES } from 'util/constants';
import ListTable from 'common-util/List/ListTable';
import {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import '@testing-library/jest-dom';
import { render } from '@testing-library/react';

import { YellowButton } from '../../common-util/YellowButton';

describe('YellowButton', () => {
Expand Down
1 change: 0 additions & 1 deletion apps/tokenomics/components/Home/Bonding/BondingList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { remove, round, isNaN } from 'lodash';
import { COLOR, NA } from '@autonolas/frontend-library';
import { QuestionCircleOutlined } from '@ant-design/icons';
import styled from 'styled-components';

import { BONDING_PRODUCTS } from 'util/constants';
import { notifySpecificError, parseToEth } from 'common-util/functions';
import { useHelpers } from 'common-util/hooks/useHelpers';
Expand Down

0 comments on commit 96eca86

Please sign in to comment.