owo-vencord/.github/workflows/test.yml

33 lines
826 B
YAML
Raw Normal View History

2022-10-12 17:06:53 +03:00
name: test
on:
push:
pull_request:
branches:
- main
2023-11-25 03:55:59 +02:00
- dev
jobs:
2022-10-12 17:06:53 +03:00
test:
2022-10-09 23:31:51 +03:00
runs-on: ubuntu-latest
2022-10-09 23:31:51 +03:00
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3 # Install pnpm using packageManager key in package.json
2022-10-09 23:31:51 +03:00
- name: Use Node.js 20
uses: actions/setup-node@v4
2022-10-09 23:31:51 +03:00
with:
node-version: 20
2022-10-09 23:31:51 +03:00
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint & Test if desktop version compiles
run: pnpm test
2023-05-12 04:41:00 +03:00
- name: Test if web version compiles
run: pnpm buildWeb
- name: Test if plugin structure is valid
run: pnpm generatePluginJson