Bump postcss from 8.4.21 to 8.4.31 #10
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 for lint/build errors | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Lint Code Base, Spelling, Link Check | |
runs-on: ubuntu-latest | |
# 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: Lint | |
uses: ConsenSys/docs-gha/lint@main | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |