refactor(tree-wide): misc improvements (#1547) #361
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deno Check | |
on: | |
push: | |
branches: [main] | |
paths: ["**/*.ts"] | |
pull_request: | |
branches: [main] | |
paths: ["**/*.ts"] | |
jobs: | |
check: | |
if: github.repository == 'catppuccin/userstyles' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Deno | |
uses: nekowinston/setup-deno@main | |
with: | |
deno-version: v2.1.3 | |
- name: Check | |
run: | | |
deno lint | |
deno check **/*.ts |