Skip to content

Commit

Permalink
fix: add build step on ci actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gloaysa committed Feb 24, 2022
1 parent 7dbdfe8 commit d4477a9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Build application
run: npm build

- name: Package & Deploy
env:
# macOS Code signing certificates
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bonnies-apps",
"version": "1.1.0",
"version": "1.1.1",
"description": "Electron + React + Express + Typescript Bundle",
"author": "Guillermo Loaysa",
"main": "public/electron.js",
Expand Down
4 changes: 2 additions & 2 deletions src/apps/split-names/split-names.app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ const SplitNamesApp = (): JSX.Element => {
justifyContent: 'space-around',
marginBottom: '20px',
}}>
<Button onClick={() => handleCopyToClipboard(names)}>Copiar nombres</Button>
<Button onClick={() => handleCopyToClipboard(surnames)}>Copiar apellidos</Button>
{/*<Button onClick={() => handleCopyToClipboard(names)}>Copiar nombres</Button>
<Button onClick={() => handleCopyToClipboard(surnames)}>Copiar apellidos</Button>*/}
</div>
<TableNamesComponent rows={table}/>
</>
Expand Down

0 comments on commit d4477a9

Please sign in to comment.