Skip to content

⬆️ Bump @zip.js/zip.js from 2.7.20 to 2.7.30 #472

⬆️ Bump @zip.js/zip.js from 2.7.20 to 2.7.30

⬆️ Bump @zip.js/zip.js from 2.7.20 to 2.7.30 #472

Workflow file for this run

name: Checker
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: '19'
- name: Install dependencies
run: npm install --global pnpm && pnpm install --frozen-lockfile
- name: Run the formatter
run: npm run format
- name: Run the linter
run: npm run lint --fix
- name: Create a commit and push the changes
uses: stefanzweifel/git-auto-commit-action@v4
if: always()
with:
commit_message: '🚨 Fixed formatter issues'
commit_user_name: Formatter Bot