From c5c211af1b2fc745e352344086ba235439f73901 Mon Sep 17 00:00:00 2001 From: "Joseph R. Quinn" <423821+quinnjr@users.noreply.github.com> Date: Sun, 21 Dec 2025 12:40:13 -0500 Subject: [PATCH 1/2] docs: add @pegasusheavy/ngx-tailwindcss to UI libraries section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c072027..37223c0 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,7 @@ - 📚 [STDF](https://stdf.design) - Mobile web component library based on Svelte and Tailwind CSS. - 📚 [Preline UI](https://preline.co) - Open-source Tailwind CSS components library for any needs. - 📚 [Date picker](https://github.com/themesberg/tailwind-datepicker) - Adds a datepicker component built with Tailwind CSS and vanilla JavaScript. +- 📚 [ngx-tailwindcss](https://github.com/pegasusheavy/ngx-tailwindcss) - Customizable Angular component library for Tailwind CSS 4+. - 📁 [Built at lightspeed](https://www.builtatlightspeed.com/) - Massive directory of 500+ Tailwind templates, starters and UI kits. - 📁 [Admin One Vue 3](https://github.com/justboil/admin-one-vue-tailwind) - Free Vue.js 3 Tailwind CSS admin template with Vite & Vue CLI support. - 📁 [Admin One React](https://github.com/justboil/admin-one-react-tailwind) - Free React.js Tailwind CSS admin template with Next.js & TypeScript. From ae5f35597fd4c03472d45936c6d9734cfe61a602 Mon Sep 17 00:00:00 2001 From: "Joseph R. Quinn" <423821+quinnjr@users.noreply.github.com> Date: Sat, 3 Jan 2026 13:48:33 -0500 Subject: [PATCH 2/2] ci: add CodeQL security analysis workflow --- .github/workflows/codeql.yml | 38 ++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..074261a --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,38 @@ +name: "CodeQL" + +on: + push: + branches: [main, develop] + pull_request: + branches: [main, develop] + schedule: + - cron: '0 0 * * 1' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: ['javascript-typescript'] + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + + - name: Autobuild + uses: github/codeql-action/autobuild@v3 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3