Skip to content

fix(wordmark): refine grain gradient animation parameters #274

fix(wordmark): refine grain gradient animation parameters

fix(wordmark): refine grain gradient animation parameters #274

Workflow file for this run

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