chore(deps): update devdependency @iconify/json to v2.2.289 #124
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
# needed to securely identify the workflow | |
name: autofix.ci | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
code: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: 📦 Install dependencies | |
run: pnpm install | |
# - name: 📦 Install browsers | |
# run: pnpm playwright install | |
- name: 🔠 Fix lint errors | |
run: pnpm lint --fix | |
- name: 🧪 Update unit test snapshots | |
run: pnpm test:unit -u | |
# - name: 🏃 Update component test snapshots | |
# run: pnpm test:nuxt -u | |
# - name: 🖥️ Update browser test snapshots | |
# run: pnpm test:browser --update-snapshots | |
- uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c |