Vencord/.github/workflows/test.yml

34 lines
845 B
YAML
Raw Normal View History

2022-10-12 10:06:53 -04:00
name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
2022-10-12 10:06:53 -04:00
test:
2022-10-09 16:31:51 -04:00
runs-on: ubuntu-latest
2022-10-09 16:31:51 -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
2023-04-05 21:33:16 -04:00
uses: actions/setup-node@v3
2022-10-09 16:31:51 -04:00
with:
node-version: 18
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint & Test if desktop version compiles
run: pnpm test
2023-05-11 21:41:00 -04:00
- name: Test if web version compiles
run: pnpm buildWeb
- name: Test if plugin structure is valid
run: pnpm generatePluginJson