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