Skip to content

fix(deps): update all dependencies #717

fix(deps): update all dependencies

fix(deps): update all dependencies #717

Workflow file for this run

name: Pull Request
on:
pull_request:
jobs:
build_and_test:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4.1.0
with:
node-version: 18
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Test
run: yarn test:unit
- name: Build
run: yarn build
- name: Build storybook
run: yarn build:storybook