Last 12 weeks Β· 2 commits
2 of 6 standards met
Add Deno support to GitHub Pages template This pull request enhances the existing Astro GitHub Pages template by adding first-class support for building under Deno, in line with the upstream changes in ](https://github.com/withastro/action/pull/77). π Whatβs Changed 1. Documentation Added a βπ§ Enabling Deno Supportβ section with: Add configuration Explanation of the Deno task setup & build flow Updated the project structure diagram to surface as an optional root file. 2. Deno Configuration () Introduced a minimal example that: Enables Denoβs Node-builtins compatibility Defines a task (caching) and a task ( via Denoβs loader) 3. GitHub Actions Workflow π― Motivation Leverage the new Deno support in so that users who prefer Deno can build & deploy their Astro sites without installing Node. Keep the Node-first flow fully supported and unchanged for existing users. π References Upstream Deno support in action: https://github.com/withastro/action/pull/77 Deployment guide: https://docs.astro.build/en/guides/deploy/github/ β Checklist [ ] README updated with clear Deno instructions [ ] Workflow file updated and tested on a sample Deno repo [ ] Backward compatibility verified for Node-only projects
Repository: withastro/github-pages. Description: Automatically deploy an Astro site to GitHub Pages Stars: 54, Forks: 15. Primary language: Astro. Languages: Astro (71.6%), JavaScript (28.4%). Topics: action, astro, deploy, github-pages. Open PRs: 0, open issues: 0. Last activity: 1mo ago. Community health: 50%. Top contributors: natemoo-re, nickserv, delucis, trueberryless, mandar1jn.
Description This PR updates the whole project to the latest Astro version by creating the whole project from scratch with the command and subsequently restoring adaptions from the old project. Then update the GitHub workflow as well (concurrency was removed, but I kept it here). Related issues Closes #11 Closes #10
Hello! I am styling astro page with Tailwind CSS. But for some reason, the tailwind classes do not appear on the deployed GitHub page although it does show during the local build environment. I have installed Tailwind through npm install @astrojs/tailwind and follow the official documentation as described on https://docs.astro.build/en/guides/integrations-guide/tailwind/ How to make Tailwind CSS work after deploy on GitHub Pages? My test project is this one: https://github.com/molystechie/Astro-hello-world