Skip to content

chore(deps-dev): bump prettier from 2.8.3 to 3.0.0 #363

chore(deps-dev): bump prettier from 2.8.3 to 3.0.0

chore(deps-dev): bump prettier from 2.8.3 to 3.0.0 #363

Workflow file for this run

name: Test
on:
push:
merge_group:
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Get yarn cache directory path
id: yarn
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
with:
path: ${{ steps.yarn.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: yarn run lint:ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}