Skip to content

match js button hover color logic exactly #1018

match js button hover color logic exactly

match js button hover color logic exactly #1018

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 22.x
uses: actions/setup-node@v2.5.1
with:
node-version: 22.x
- run: npm install
- run: npm run typecheck
build:
runs-on: ubuntu-latest
needs: typecheck
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.5.1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present