This repository has been archived by the owner on May 18, 2024. It is now read-only.
[Snyk] Upgrade adm-zip from 0.5.10 to 0.5.12 #117
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: Developer Chores | |
on: [pull_request] | |
jobs: | |
linter-check: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [18] | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@v3 | |
- name: Setup node env 🏗 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
check-latest: true | |
- name: Install dependencies 👨🏻💻 | |
run: npm run bootstrap | |
- name: Run linter 👀 | |
run: npm run format:write | |
- name: Comment Suggestions 🗒️ | |
uses: getsentry/action-git-diff-suggestions@main | |
with: | |
message: Prettier Suggestion |