Skip to content

Commit

Permalink
ci: fix lint ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-737 committed Jul 27, 2024
1 parent 65f6974 commit 50944b2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,24 @@ jobs:
tests:
name: Lint Check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
strategy:
matrix:
node-version: [20]

- name: Install node.js
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 20
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
cache-dependency-path: pnpm-lock.yaml

- name: Install dependencies
run: pnpm add eslint
run: npm add eslint

- name: Lint files
run: pnpm lint
run: npm lint
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<p align="center"><strong>InterChat</strong></p>

[![Maintainability](https://api.codeclimate.com/v1/badges/b13854f1a4e321cbdea5/maintainability)](https://codeclimate.com/repos/65e14df13087a11dde64b238/maintainability)
[![Maintainability](https://api.codeclimate.com/v1/badges/7dc6dd56012c2c546122/maintainability)](https://codeclimate.com/repos/66a3c98176ac086a07d4c930/maintainability)
[![Discord Bots](https://top.gg/api/widget/servers/769921109209907241.svg/)](https://top.gg/bot/769921109209907241)

This repo contains the source code for the InterChat Discord bot. InterChat is a Discord bot that allows you to chat with users from other servers.
Expand Down

0 comments on commit 50944b2

Please sign in to comment.