Skip to content

Bump discord-api-types from 0.37.86 to 0.37.101 #10

Bump discord-api-types from 0.37.86 to 0.37.101

Bump discord-api-types from 0.37.86 to 0.37.101 #10

Workflow file for this run

name: Prettier
on:
pull_request:
paths:
- '**/*.js'
- '**/*.json'
- '**/*.yml'
- '**/*.yaml'
jobs:
format_check:
name: Check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tj-actions/changed-files@v41
id: changed-files
with:
files: |
**/*.js
**/*.json
**/*.yml
**/*.yaml
separator: ' '
- uses: creyD/[email protected]
with:
dry: True
prettier_options: --check ${{ steps.changed-files.outputs.all_changed_files }}