Skip to content

Commit

Permalink
Merge pull request #2 from xjdesigns/remove_travisci
Browse files Browse the repository at this point in the history
Remove travisci
  • Loading branch information
xjdesigns authored Jan 17, 2022
2 parents be5bd18 + 0d26d13 commit 9d77eef
Show file tree
Hide file tree
Showing 6 changed files with 974 additions and 2,002 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [14.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -27,5 +27,9 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm test
- run: npm run test:coveralls
- run: npm run test:coverage

- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion website/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"localized-strings": {
"next": "Next",
"previous": "Previous",
"tagline": "A website for testing",
"tagline": "Javascript utility library that lends a helping hand",
"docs": {
"doc1": {
"title": "Latin-ish",
Expand Down
1 change: 0 additions & 1 deletion website/pages/en/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ class HomeSplash extends React.Component {

return (
<SplashContainer>
<Logo img_src={`${baseUrl}img/docusaurus.svg`} />
<div className="inner">
<ProjectTitle siteConfig={siteConfig} />
<PromoSection>
Expand Down
16 changes: 8 additions & 8 deletions website/siteConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ const users = [
];

const siteConfig = {
title: 'Test Site', // Title for your website.
tagline: 'A website for testing',
title: 'Helping Hands', // Title for your website.
tagline: 'Javascript utility library that lends a helping hand',
url: 'https://your-docusaurus-test-site.com', // Your website URL
baseUrl: '/', // Base URL for your project */
// For github.io type URLs, you would set the url and baseUrl like:
// url: 'https://facebook.github.io',
// baseUrl: '/test-site/',

// Used for publishing and more
projectName: 'test-site',
projectName: 'helping-hand',
organizationName: 'facebook',
// For top-level user or org sites, the organization is still the same.
// e.g., for the https://JoelMarcey.github.io site, it would be set like...
Expand All @@ -48,14 +48,14 @@ const siteConfig = {
users,

/* path to images for header/footer */
headerIcon: 'img/docusaurus.svg',
footerIcon: 'img/docusaurus.svg',
// headerIcon: 'img/docusaurus.svg',
// footerIcon: 'img/docusaurus.svg',
favicon: 'img/favicon.png',

/* Colors for website */
colors: {
primaryColor: '#2E8555',
secondaryColor: '#205C3B',
primaryColor: '#333',
secondaryColor: '#0C1C8F',
},

/* Custom fonts for website */
Expand All @@ -73,7 +73,7 @@ const siteConfig = {
*/

// This copyright info is used in /core/Footer.js and blog RSS/Atom feeds.
copyright: `Copyright © ${new Date().getFullYear()} Your Name or Your Company Name`,
copyright: `Copyright © ${new Date().getFullYear()} Jason Jacobson`,

highlight: {
// Highlight.js theme to use for syntax highlighting in code blocks.
Expand Down
Loading

0 comments on commit 9d77eef

Please sign in to comment.