Skip to content

build(deps-dev): bump postcss from 8.4.23 to 8.4.31 #36

build(deps-dev): bump postcss from 8.4.23 to 8.4.31

build(deps-dev): bump postcss from 8.4.23 to 8.4.31 #36

Workflow file for this run

name: PR Source Code Check
on:
- push
jobs:
lint:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- run: yarn
- run: yarn lint:strict
tsc:
name: Run Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- run: yarn
- run: yarn type-check
prettier:
name: Run Prettier Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- run: yarn
- run: yarn format:check
# test:
# name: Run Test
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: '16'
# cache: 'yarn'
# - run: yarn
# - run: yarn test