Skip to content

chore(deps): bump cross-fetch from 3.1.4 to 3.1.5 #12

chore(deps): bump cross-fetch from 3.1.4 to 3.1.5

chore(deps): bump cross-fetch from 3.1.4 to 3.1.5 #12

Workflow file for this run

name: CF
on:
pull_request:
types: [ready_for_review, synchronize, opened]
jobs:
prettier:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
concurrency:
group: ${{ github.head_ref }}-prettier
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_TOKEN }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Cache .pnpm-store
uses: actions/cache@v1
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-node${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: Install pnpm
run: curl -f https://get.pnpm.io/v6.14.js | node - add --global pnpm@6
- name: Install
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Format
run: pnpm run prettier
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "style: resolve style guide violations"