Skip to content

bump

bump #133

Workflow file for this run

name: "Chromatic"
on:
push:
branches: [main]
pull_request:
types:
- opened
- synchronize
concurrency: ci-${{ github.ref }}
jobs:
check-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Required to retrieve git history
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20.15.1
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test:ci