Skip to content

fix: Confirm component, message type #769

fix: Confirm component, message type

fix: Confirm component, message type #769

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Check format
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [20.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install -g yarn
- name: check format
run: |
yarn install --frozen-lockfile
yarn format:check