feat(palettes): prefix filenames with "Catppuccin" #68
Workflow file for this run
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: Lint & Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
main: | |
name: Lint and test | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: nekowinston/setup-deno@v1 | |
- uses: swift-actions/setup-swift@v2 | |
with: | |
swift-version: "5" | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
- name: Check | |
run: deno check **/*.ts | |
- name: Lint | |
run: deno lint --compact | |
- name: Test | |
run: deno test --doc | |
- name: Build | |
run: deno task build | |
env: | |
COMPILE_APPLE_COLOR_LIST: 1 | |
- name: Upload Built Palette Formats | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "Catppuccin Palette Formats" | |
path: dist/palettes |