Skip to content

chore(deps): update dependency prettier to v3 #495

chore(deps): update dependency prettier to v3

chore(deps): update dependency prettier to v3 #495

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12.x'
- uses: actions/cache@v2
id: cache
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.OS }}-node-
- name: yarn install
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install
- name: yarn run check:tsc
run: yarn run check:tsc
- name: yarn run check:eslint
run: yarn run check:eslint
- name: yarn run check:prettier
run: yarn run check:prettier
- name: yarn run test:type
run: yarn run test:type
- name: yarn run test:jest
run: yarn run test:jest
- name: yarn run build
run: yarn run build