aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yml
blob: 4e0fa975f570e9df9836d7166efe12c3e28fa6eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: lint
on:
    push:
        branches:
            - main
    pull_request:
        branches:
            - main
jobs:
  Build:
    runs-on: ubuntu-latest

    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