Skip to content

Bump axios from 1.2.2 to 1.6.7 #47

Bump axios from 1.2.2 to 1.6.7

Bump axios from 1.2.2 to 1.6.7 #47

Workflow file for this run

name: ESLint
on:
push:
branches: ['main']
pull_request:
# The branches below must be a subset of the branches above
branches: ['main']
jobs:
eslint:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Run ESLint
run: npm run lint