Skip to content
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

Changed url text color #16

Merged
merged 3 commits into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
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).