Skip to content

Refactor Account related components with function component, react-query, and ts #248

Refactor Account related components with function component, react-query, and ts

Refactor Account related components with function component, react-query, and ts #248

Workflow file for this run

name: CI
on:
push:
branches: [main, migration]
pull_request:
branches: [main, migration]
env:
NODE_VERSION: 18
jobs:
format-and-lint:
name: Format and Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- name: Install yarn dependencies
run: yarn install
- name: Format
run: yarn prettier
- name: Lint
run: yarn lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- name: Install yarn dependencies
run: yarn install
- name: Build
run: yarn build
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- name: Install yarn dependencies
run: yarn install
- name: Run tests
run: yarn coverage
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: sparcs-kaist/otlplus-web