Unignore lock file

This commit is contained in:
Vendicated 2022-10-09 22:31:51 +02:00
parent 25a64ab6be
commit 304bf4fe29
No known key found for this signature in database
GPG key ID: EC781ADFB93EFFA3
6 changed files with 1757 additions and 29 deletions

View file

@ -7,21 +7,21 @@ on:
branches:
- main
jobs:
Build:
runs-on: ubuntu-latest
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
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 --frozen-lockfile
- name: Build aliucord
run: pnpm lint && pnpm build