Skip to content

Commit

Permalink
try combining the jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
piyalbasu committed Jun 27, 2023
1 parent d0e4817 commit c12d94e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/buildTranslations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,5 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.head_ref }}
- name: test
run: yarn test:ci
28 changes: 14 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: test
on: [pull_request]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16.14.0
- run: yarn install
- run: yarn build
- run: yarn test:ci
# name: test
# on: [pull_request]
# jobs:
# test:
# name: test
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v2
# with:
# node-version: 16.14.0
# - run: yarn install
# - run: yarn build
# - run: yarn test:ci
2 changes: 1 addition & 1 deletion extension/src/popup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "popup/helpers/localizationConfig";
// Import global CSS from Stellar Design System
import "@stellar/design-system/build/styles.min.css";

console.log("tesst");
console.log("test");

// eslint-disable-next-line react/jsx-filename-extension
ReactDOM.render(<App />, document.getElementById("root"));

0 comments on commit c12d94e

Please sign in to comment.