Skip to content

Q4 Haunted Kittens Release Tracking PR 👻 #327

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 53 commits into from
Oct 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
492bc35
add fontWeights to theme
Oct 23, 2018
caf60d2
update fontWeight usages
Oct 23, 2018
ecadd55
update package.json
Oct 23, 2018
4802968
fix lint + test workflow
shawnbot Oct 23, 2018
dbfae16
add "needs" for lint and test actions
shawnbot Oct 23, 2018
2f2c67e
update tests
Oct 23, 2018
fee56d7
Merge branch 'update-theme' of github.com:primer/components into upda…
Oct 23, 2018
f84c9e5
fix lint
Oct 23, 2018
5e6631b
Merge pull request #326 from primer/update-theme
Oct 23, 2018
ae2472a
rename Octicon -> StyledOcticon
shawnbot Oct 24, 2018
ff92ad4
export StyledOcticon
shawnbot Oct 24, 2018
5104eef
sort exports alphabetically
shawnbot Oct 24, 2018
ea04179
add basic StyledOcticon tests
shawnbot Oct 24, 2018
4917616
lint
shawnbot Oct 24, 2018
1ffbec9
Merge remote-tracking branch 'origin/q4-haunted-kittens' into styled-…
shawnbot Oct 24, 2018
6818e7b
fix the StyledOcticon snapshot :grimacing:
shawnbot Oct 24, 2018
2bb146c
add StyledOcticon docs
shawnbot Oct 24, 2018
9a92011
Merge pull request #328 from primer/styled-octicon
shawnbot Oct 24, 2018
43d59f5
remove border props from Layout, add to BorderBox
Oct 24, 2018
f21d4e8
update Box tests
Oct 25, 2018
2f09185
Fix CircleOcticon
Oct 25, 2018
d89c08f
update Dropdown
Oct 25, 2018
9141a68
set bg on CircleOcticon
Oct 25, 2018
e31d077
remove unnecessary imports
Oct 25, 2018
d7c5c7b
update snaps
Oct 25, 2018
33be761
lint
Oct 25, 2018
92c6ed6
pass boxShadow as string
Oct 25, 2018
2b5eded
add some tests
Oct 25, 2018
83cd4f7
lint
Oct 25, 2018
f5995fb
Merge branch 'q4-haunted-kittens' into border-box
Oct 25, 2018
3cc354e
add width and remove block
Oct 25, 2018
d2bef28
remove ButtonLink
Oct 25, 2018
8f59e16
remove linkStyle
Oct 25, 2018
2c9adca
add ability to change tag to Link
Oct 25, 2018
abba828
add props validation
Oct 25, 2018
2feb606
styles should live in component instead of using classname
Oct 25, 2018
1e9e654
update example
shawnbot Oct 25, 2018
e4ebef0
update link prop types
Oct 25, 2018
7bdd44d
Merge branch 'button-updates' of github.com:primer/components into bu…
Oct 25, 2018
0600b45
clean up Link component
Oct 25, 2018
761b454
update Button tests
Oct 25, 2018
fa63c7d
update Dropdown snapshot
Oct 25, 2018
6b48afc
Link snapshot
Oct 25, 2018
a604f32
Merge branch 'q4-haunted-kittens' into button-updates
Oct 25, 2018
bc5b1b6
remove semibold from theme
Oct 25, 2018
d0d3e87
remove alt and src props
Oct 25, 2018
b4d1180
lint
Oct 25, 2018
566a369
Merge pull request #329 from primer/border-box
Oct 25, 2018
251760e
Merge pull request #331 from primer/remove-semibold
Oct 25, 2018
467c8d9
Merge pull request #332 from primer/circlebadge
Oct 25, 2018
62acd3e
fix lint
Oct 25, 2018
d417697
Merge pull request #330 from primer/button-updates
Oct 25, 2018
1fcd6e1
remove clean-tag
Oct 26, 2018
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
13 changes: 10 additions & 3 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
workflow "Lint and test" {
on = "push"
resolves = ["lint", "test"]
resolves = ["install", "lint", "test"]
}

action "install" {
uses = "actions/npm@94e6933"
args = "ci"
}

action "lint" {
needs = ["install"]
uses = "actions/npm@94e6933"
args = "lint"
args = "run lint"
}

action "test" {
args = "test"
needs = ["install"]
uses = "actions/npm@94e6933"
args = "test"
}
Loading