Skip to content

Bump js-yaml from 4.1.1 to 4.3.0 #91

Bump js-yaml from 4.1.1 to 4.3.0

Bump js-yaml from 4.1.1 to 4.3.0 #91

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: TypeScript check
run: npx tsc --noEmit
- name: Test
run: npm test -- --run
- name: Build library
run: npm run build
- name: Build Storybook
run: npm run build-storybook