Skip to content

Commit

Permalink
Changed url text color (#16)
Browse files Browse the repository at this point in the history
Removed padding from `code` text span.

Also fixed a couple of minor details in the `cache-your-actions` post.
- Link to other post was broken
- A broken symbol was at the bottom of the post
  • Loading branch information
Bullrich authored May 6, 2024
1 parent c3c7da4 commit 5ebc616
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions src/_includes/styles/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
}

.blog-content {
@apply prose lg:prose-xl text-primary-content prose-headings:text-transparent
prose-headings:bg-clip-text prose-headings:bg-gradient-to-r
prose-headings:from-accent prose-headings:to-base-content prose-strong:text-accent;
@apply prose lg:prose-xl text-primary-content prose-headings:text-transparent prose-headings:bg-clip-text prose-headings:bg-gradient-to-r prose-headings:from-accent prose-headings:to-base-content prose-strong:text-accent prose-a:text-secondary prose-code:px-0;
}

#main-content {
Expand Down
4 changes: 2 additions & 2 deletions src/blog/2024-05-06-cache-your-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tags:
---
If your actions have a long installation step (or very big `node_modules`) you can cache the installation step using the GitHub action [`actions/cache`](https://github.com/actions/cache).

This is very useful for cases where you use a [matrix to run multiple tests](../run-all-your-tests-concurrently).
This is very useful for cases where you use a [matrix to run multiple tests](./run-all-your-tests-concurrently).

![](https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExOTBqbThwcnI5a3R3NHJ3ZzdwZ3ZjNXc0ZnM1bHBqM3JoeHhqanN6byZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/WSy0SI6qipEDJogaGD/giphy.gif)

Expand Down Expand Up @@ -49,4 +49,4 @@ We also don’t want to cache the dependencies for a different OS, so we add to

And that’s all! Now you can cache all your actions.

Remember to [checkout the examples for your specific package manager](https://github.com/actions/cache/blob/main/examples.md).![](#)
Remember to [checkout the examples for your specific package manager](https://github.com/actions/cache/blob/main/examples.md).

0 comments on commit 5ebc616

Please sign in to comment.