Skip to content

Bump prettier from 3.3.2 to 3.3.3 #284

Bump prettier from 3.3.2 to 3.3.3

Bump prettier from 3.3.2 to 3.3.3 #284

Workflow file for this run

name: Lint
on: [pull_request]
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
permissions:
contents: read # for actions/checkout to fetch code
statuses: write # for super-linter/super-linter/slim to mark status of each linter run
name: Super-Linter
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- uses: super-linter/super-linter/[email protected]
env:
DEFAULT_BRANCH: main
VALIDATE_ALL_CODEBASE: true
# VALIDATE_EDITORCONFIG: true
VALIDATE_MARKDOWN: true
VALIDATE_YAML: true
YAML_ERROR_ON_WARNING: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}