Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

feat: add Gatsby logo to returned framework info #797

Merged
merged 13 commits into from
Aug 9, 2022
Merged
Show file tree
Hide file tree
Changes from 11 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
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

33 changes: 0 additions & 33 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,36 +53,3 @@ jobs:
with:
file: coverage/coverage-final.json
flags: ${{ steps.test-coverage-flags.outputs.os }},${{ steps.test-coverage-flags.outputs.node }}
cypress-tests:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Using Node.js
uses: actions/setup-node@v3
with:
node-version: '*'
cache: 'npm'
check-latest: true
- uses: actions/cache@v3
with:
# Browsers are downloaded under node_modules
path: |
~/.cache
node_modules
key: v1-${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm ci --no-audit
- name: Build For Browser
run: npm run build
- name: Tests
run: npm run test:ci:cypress
- uses: actions/upload-artifact@v3
if: always()
with:
name: cypress-results
path: |
cypress/screenshots
cypress/videos
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ cypress/videos
cypress/screenshots
cypress/support
.DS_Store

# Local Netlify folder
.netlify
13 changes: 13 additions & 0 deletions assets/logos/gatsby/dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions assets/logos/gatsby/default.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions assets/logos/gatsby/light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions cypress.json

This file was deleted.

9 changes: 0 additions & 9 deletions cypress/integration/e2e.js

This file was deleted.

4 changes: 0 additions & 4 deletions cypress/plugins/index.mjs

This file was deleted.

82 changes: 0 additions & 82 deletions cypress/run.js

This file was deleted.

4 changes: 1 addition & 3 deletions site/index.html → index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,5 @@
<meta charset="utf-8" />
<title>Framework Info</title>
</head>
<body>
<a href="react">React Site</a>
</body>
<body></body>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[sand] Is the index.html file required since only assets are being served now?

</html>
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build]
command = "npm run build"
publish = "dist"
publish = "assets"

[build.environment]
NODE_VERSION = "12"
Loading