Bump prettier-plugin-tailwindcss from 0.6.5 to 0.6.6 #78
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: 'Dependency Review' | |
# When a PR is made and the dependencies change, check for vulnerabilities and that the | |
# licenses are permissive (not GPL). | |
on: | |
pull_request: | |
paths: | |
- 'package*.json' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
dependency-review: | |
name: 'Review' | |
runs-on: ubuntu-latest | |
if: github.repository == 'usepa/haztrak' | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v3 | |
- name: 'Dependency Review' | |
uses: actions/dependency-review-action@v3 | |
with: | |
comment-summary-in-pr: true | |
fail-on-severity: high | |
# We only want permissive licenses to allow | |
# people to take this project and run with it | |
deny-licenses: GPL-1.0-or-later |