fix: package.json to reduce vulnerabilities (#102) #446
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: Prettier | |
# This action works with pull requests and pushes | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- uses: pnpm/[email protected] | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 8.6.11 | |
run_install: false | |
- name: Install depends | |
run: pnpm i | |
- name: Emit auto import | |
run: pnpm test src/logic/noop.spec.ts | |
- name: Fretit | |
run: pnpm pretit | |
# - name: Commit changes | |
# uses: EndBug/add-and-commit@v9 | |
# with: | |
# author_name: GitHub Actions | |
# author_email: [email protected] | |
# message: 'chore: `prettier -w`' | |
# push: origin main |