Skip to content

Update dependency prettier to v3 #2770

Update dependency prettier to v3

Update dependency prettier to v3 #2770

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: cache deps
uses: actions/cache@main
with:
path: |
node_modules
*/*/*/node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: install deps
run: yarn
- name: lint
run: yarn lint
- name: test
run: yarn test