Update lint.yml
This commit is contained in:
parent
a3c2da31c3
commit
25a64ab6be
25
.github/workflows/lint.yml
vendored
25
.github/workflows/lint.yml
vendored
@ -7,16 +7,21 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
Build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Install pnpm
|
steps:
|
||||||
run: npm i -g pnpm
|
- uses: actions/checkout@v3
|
||||||
|
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
|
||||||
|
|
||||||
- name: Install deps
|
- name: Use Node.js 18
|
||||||
run: pnpm i
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
cache: 'pnpm'
|
||||||
|
|
||||||
- name: Run ESLint
|
- name: Install dependencies
|
||||||
run: pnpm run lint
|
run: pnpm install
|
||||||
|
|
||||||
|
- name: Build aliucord
|
||||||
|
run: pnpm lint && pnpm build
|
||||||
|
Loading…
Reference in New Issue
Block a user