Skip to content

chore(ui): 見てくれをv5時代に合わせる #75

chore(ui): 見てくれをv5時代に合わせる

chore(ui): 見てくれをv5時代に合わせる #75

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
tags-ignore:
- "**"
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install
run: |
yarn
- name: Lint
run: |
yarn lint:prettier
yarn lint:eslint
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
needs: lint
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install
run: |
yarn
- name: Build
run: |
yarn build