Skip to content

タスクのスクロールの縦幅の長さだけ一旦修正、あとsvgのロゴをテキストの隣にもってきた #58

タスクのスクロールの縦幅の長さだけ一旦修正、あとsvgのロゴをテキストの隣にもってきた

タスクのスクロールの縦幅の長さだけ一旦修正、あとsvgのロゴをテキストの隣にもってきた #58

Workflow file for this run

name: Client
on:
push:
branches:
- 'main'
pull_request:
jobs:
package:
name: Check npm install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.2.0'
cache: npm
cache-dependency-path: ./package-lock.json
- name: npm ci
run: npm ci
working-directory: ./
format:
name: Run format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.2.0'
cache: npm
cache-dependency-path: ./package-lock.json
- name: npm ci
run: npm ci
working-directory: ./
- name: Run fmt
run: npm run fmt:check
working-directory: ./
lint:
name: Run lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.2.0'
cache: npm
cache-dependency-path: ./package-lock.json
- name: npm ci
run: npm ci
working-directory: ./
- name: Run lint
run: npm run lint
working-directory: ./
build:
name: Run build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.2.0'
cache: npm
cache-dependency-path: ./package-lock.json
- name: npm ci
run: npm ci
working-directory: ./
- name: Run build
run: npm run build
working-directory: ./