diff options
author | Ven <vendicated@riseup.net> | 2022-10-09 22:24:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-09 22:24:52 +0200 |
commit | 25a64ab6be0ad02008f57a518b9c6a874f5ea05d (patch) | |
tree | d28fe5ef37e586f76e82b20a540f12eacd7cf8eb /.github/workflows | |
parent | a3c2da31c395b291974415c2f9c5649c4695e5e8 (diff) | |
download | Vencord-25a64ab6be0ad02008f57a518b9c6a874f5ea05d.tar.gz Vencord-25a64ab6be0ad02008f57a518b9c6a874f5ea05d.tar.bz2 Vencord-25a64ab6be0ad02008f57a518b9c6a874f5ea05d.zip |
Update lint.yml
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/lint.yml | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 715e59b..4e0fa97 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,16 +7,21 @@ on: branches: - main jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 + Build: + runs-on: ubuntu-latest - - name: Install pnpm - run: npm i -g pnpm - - - name: Install deps - run: pnpm i - - - name: Run ESLint - run: pnpm run lint + steps: + - uses: actions/checkout@v3 + - uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json + + - name: Use Node.js 18 + uses: actions/setup-node@v2 + with: + node-version: 18 + cache: 'pnpm' + + - name: Install dependencies + run: pnpm install + + - name: Build aliucord + run: pnpm lint && pnpm build |