Skip to content

feat: add tuto icon #59

feat: add tuto icon

feat: add tuto icon #59

Workflow file for this run

name: ci
on: [pull_request]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install modules
run: yarn install --frozen-lockfile
- name: Run Lint commit messages
run: yarn commitlint --from=HEAD
- name: Run ESLint
run: yarn lint:es
- name: Run Stylelint
run: yarn lint:style
- name: Run Compile TypeScript
run: yarn tsc
- name: Run Test
run: yarn test
- name: Build Design System Library
run: yarn build
- name: Build Storybook
run: yarn build:storybook