This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
Bump next-auth from 4.6.1 to 4.24.5 #1048
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
name: Assertions | |
on: | |
pull_request: | |
branches: main | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ github.token }} | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
cache: 'npm' | |
- name: Install Dependencies | |
run: | | |
npm i --legacy-peer-deps | |
cd docs | |
npm i --legacy-peer-deps | |
- name: Lint Docs | |
run: | | |
cd docs | |
npm run lint | |
- name: Lint Frontend | |
run: | | |
npm run lint | |
- name: Run Frontend Tests | |
run: | | |
npm run test:jest |