Bump webpack from 5.75.0 to 5.88.2 #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Check file name case | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
case: | |
name: Check for case being inconsistent | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
folder: ["docs", "blog"] | |
# the enviroment to deploy to / use secrets from | |
environment: no-secret | |
# modify the default permissions of the GITHUB_TOKEN, so as to only allow least priveleges | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Case check action | |
uses: ConsenSys/docs-gha/case@main | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOC_DIR: ${{ matrix.folder }} |