2022-10-05 18:42:58 -04:00
|
|
|
name: lint
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
jobs:
|
2022-10-09 16:24:52 -04:00
|
|
|
Build:
|
|
|
|
runs-on: ubuntu-latest
|
2022-10-05 18:42:58 -04:00
|
|
|
|
2022-10-09 16:24:52 -04:00
|
|
|
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
|