Skip to content

Bump eslint-plugin-import from 2.29.0 to 2.29.1 #59

Bump eslint-plugin-import from 2.29.0 to 2.29.1

Bump eslint-plugin-import from 2.29.0 to 2.29.1 #59

Workflow file for this run

name: Prettier after pull request
permissions:
pull-requests: read
contents: write
# This action works with pull requests
on:
pull_request:
branches:
- master
- experimental
jobs:
prettier:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
- name: Prettify code
uses: creyD/[email protected]
with:
# This part is also where you can pass other options, for example:
prettier_options: --write ./**/*.{css,html,js,json,md}