Skip to content

npm(deps): bump axios from 1.13.2 to 1.13.5 #178

npm(deps): bump axios from 1.13.2 to 1.13.5

npm(deps): bump axios from 1.13.2 to 1.13.5 #178

Workflow file for this run

name: Lint extension
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
shell: bash
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: ./.github/actions/setup
- name: Run Prettier
run: npx prettier --check .
- name: Run eslint
run: npx eslint
- name: Check TypeScript
run: npm run typecheck