Skip to content

chore(deps): update dependency prettier to v2.8.8 #267

chore(deps): update dependency prettier to v2.8.8

chore(deps): update dependency prettier to v2.8.8 #267

Workflow file for this run

name: Unit test, Lint, Type check, and Commitlint
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Get yarn cache
id: yarn-cache
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Library install
run: yarn --frozen-lockfile
- name: Unit test
run: yarn run test
- name: Lint
run: yarn run lint
- name: Type check
run: yarn run type-check
- name: Commitlint
run: yarn run commitlint