chore(deps): update dependency eslint-plugin-prettier to v5 #493
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |