Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
96d481d
another commit
ChacDLT Mar 6, 2020
99e3371
same commit
ChacDLT Mar 6, 2020
f6b7884
Automated report
Mar 6, 2020
525bf35
another same commit
ChacDLT Mar 6, 2020
2645bda
Merge branch 'branch2' of https://github.com/FelipeD-FiveTalent/githu…
ChacDLT Mar 6, 2020
29ac020
some commit
ChacDLT Mar 6, 2020
f1541e8
Automated report
Mar 6, 2020
eb943e2
some commit
ChacDLT Mar 6, 2020
cced505
Cleaning
actions-user Mar 6, 2020
25ab31b
some commit
ChacDLT Mar 6, 2020
62c9efb
Cleaning FelipeD-FiveTalent's mess'
actions-user Mar 6, 2020
011780a
no changes to commit
ChacDLT Mar 6, 2020
38d32f3
nothing to commit
ChacDLT Mar 6, 2020
3392701
changes to more files
ChacDLT Mar 6, 2020
3618781
Cleaning FelipeD-FiveTalent's mess'
actions-user Mar 6, 2020
bc303eb
something to commit
ChacDLT Mar 9, 2020
fa6b3f7
changes
ChacDLT Mar 9, 2020
5589535
changes
ChacDLT Mar 9, 2020
859d33b
changes
ChacDLT Mar 9, 2020
4787c8e
changes
ChacDLT Mar 9, 2020
2c25b9f
changes 1
ChacDLT Mar 9, 2020
be88ea7
changes 2
ChacDLT Mar 9, 2020
09723dc
changes 3
ChacDLT Mar 9, 2020
61982ee
changes 4
ChacDLT Mar 9, 2020
1b19323
changes 5
ChacDLT Mar 9, 2020
6a5a84a
changes 5
ChacDLT Mar 9, 2020
3798d79
changes 6
ChacDLT Mar 9, 2020
0f9e4ba
changes 7
ChacDLT Mar 9, 2020
2c0e9f8
changes 8
ChacDLT Mar 9, 2020
a7dd97f
Cleaning FelipeD-FiveTalent's mess
actions-user Mar 9, 2020
aecc613
changes 9
ChacDLT Mar 9, 2020
d5f1cb4
change 1
ChacDLT Mar 10, 2020
b371649
Cleaning FelipeD-FiveTalent's mess
actions-user Mar 10, 2020
8bc6497
change 2
ChacDLT Mar 10, 2020
a87ae12
Merge branch 'branch2' of https://github.com/FelipeD-FiveTalent/githu…
ChacDLT Mar 10, 2020
a30515e
change
ChacDLT Mar 11, 2020
02f7125
change
ChacDLT Mar 11, 2020
b9987e8
Cleaning FelipeD-FiveTalent's mess
actions-user Mar 11, 2020
1cb8ccd
change
ChacDLT Mar 11, 2020
ad4c0b3
change
ChacDLT Mar 11, 2020
77be7f4
change
ChacDLT Mar 11, 2020
c04dfc4
change
ChacDLT Mar 11, 2020
fa9a708
change
ChacDLT Mar 11, 2020
81da4cf
change
ChacDLT Mar 11, 2020
da2f824
something someting cool
ChacDLT Mar 16, 2020
924eb65
change
ChacDLT Mar 16, 2020
5929cf4
Cleaning FelipeD-FiveTalent's lint
actions-user Mar 16, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,24 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: printf 'const awsmobile = {}; \n\nexport default awsmobile;' > ./src/aws-exports.js
- run: yarn install
- run: yarn run build --if-present
- run: yarn run lint

- name: Install and Build
run: |
yarn install
yarn run build --if-present

- name: Lint
run: |
yarn run lint

- name: Fix:Lint and Commit
if: failure()
run: |
yarn run lint:ga-fix
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -am "Cleaning ${{ github.actor }}'s lint"
git push

env:
CI: true
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix"
"lint:ga-fix": "eslint --ignore-pattern '/build/' . --fix"
},
"eslintConfig": {
"extends": "react-app"
Expand Down
11 changes: 4 additions & 7 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,12 @@ function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<img src={logo} className="Appssssssss" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
Edit <code>src/App.js</code>
and save to reload.
</p>
<a className="App-link"



href="https://reactjs.org" target="_blank" rel="noopener noreferrer">
<a className="App-link" href="https://reactjs.org" target="_blank" rel="noopener noreferrer">
Learn Nothing
</a>
</header>
Expand Down