Skip to content

chore(deps-dev): bump prettier from 2.8.4 to 2.8.8 #1285

chore(deps-dev): bump prettier from 2.8.4 to 2.8.8

chore(deps-dev): bump prettier from 2.8.4 to 2.8.8 #1285

Workflow file for this run

name: Node.js CI
on:
push:
branches: [master]
pull_request:
jobs:
test:
strategy:
matrix:
node: [16.x, 20.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ matrix.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ matrix.os }}-yarn-
- run: yarn --frozen-lockfile
- run: yarn build
- run: yarn lint
- run: yarn coverage