ModularVencord/.github/workflows/test.yml

37 lines
947 B
YAML
Raw Normal View History

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