Skip to content

Commit

Permalink
move to bottled-ember
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Mar 6, 2023
1 parent f2aab0a commit 6157398
Show file tree
Hide file tree
Showing 9 changed files with 14,465 additions and 19,833 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,24 @@ concurrency:
cancel-in-progress: true

jobs:
test:
name: "Tests"
percy:
name: "Percy Tests"
runs-on: ubuntu-latest
env:
PERCY_TOKEN: ee0a9d5c1122d6a21852edf19b5b309aaec18077fb3900c98995c90bc48ed240
RUN_PERCY_TESTS: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 14.x
cache: npm
- run: npm i -g npm@8
- run: npm ci
- run: npx percy exec -- npm run test:docs

test:
name: "Tests"
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# compiled output
/dist/
/dist-*
/tmp/

# dependencies
Expand Down
18 changes: 18 additions & 0 deletions config/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = function (/* environment */) {
return {
'field-guide': {
name: 'Ember',
tagLine: 'Ember Styleguide',
logo: '/ember-logo.png',
copyright:
'Ember Field Guide is designed to document the [ember-styleguide](https://github.com/ember-learn/ember-styleguide) project. For more information view the [README](https://github.com/ember-learn/ember-styleguide),',
github: 'https://github.com/ember-learn/ember-styleguide',
},
};
};

module.exports['ember-cli-build'] = {
fingerprint: {
extensions: ['js', 'css', 'map'],
},
};
33 changes: 33 additions & 0 deletions docs-styles/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
.self-executing-code-block {
margin-bottom: 2rem;
}

@media only percy {
.hide-in-percy {
visibility: hidden;
}
}

.border-dashed {
border: 1px dashed var(--color-gray-500);
}

.spacer-xsmall {
height: var(--spacing-1);
}

.spacer-small {
height: var(--spacing-2);
}

.spacer-medium {
height: var(--spacing-3);
}

.spacer-large {
height: var(--spacing-4);
}

.spacer-xlarge {
height: var(--spacing-5);
}
Loading

0 comments on commit 6157398

Please sign in to comment.