Skip to content

chore(deps): update dependency next-auth to v4.24.11 #1031

chore(deps): update dependency next-auth to v4.24.11

chore(deps): update dependency next-auth to v4.24.11 #1031

Workflow file for this run

name: ESLint
on:
push:
branches:
- "*"
- "!gh-pages"
paths:
- "**/*.ts"
- "**/*.tsx"
- ".eslintrc.*"
- ".github/workflows/lint.yml"
- "package.json"
- "yarn.lock"
pull_request:
tags:
- '!*'
branches:
- '*'
workflow_dispatch:
jobs:
lint:
name: Lint source code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Node v18
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn install --immutable
- name: Run ESLint
run: yarn lint