Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 7 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,13 @@ 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
- run: yarn run lint:fix
- name: Commit files
run: |
git config --local user.email "felipe.delatorre@fivetalent.com"
git config --local user.name "FelipeD-FiveTalent"
git commit -am "Automated report"
git push
env:
CI: true
6 changes: 1 addition & 5 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ function App() {
<p>
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