fix(wordmark): refine grain gradient animation parameters #274
This file contains hidden or 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: CI | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
# Node.js build and test job | |
test: | |
runs-on: blacksmith-2vcpu-ubuntu-2404 | |
strategy: | |
matrix: | |
node-version: [22] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Enable corepack | |
run: corepack enable | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Prepare package manager | |
run: corepack prepare --activate | |
- name: Install deps | |
run: pnpm install --frozen-lockfile | |
- name: Type check | |
run: pnpm type-check | |
- name: Lint | |
run: pnpm lint --max-warnings 0 |