2022-10-12 10:06:53 -04:00
|
|
|
name: test
|
2022-10-05 18:42:58 -04:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-11-24 20:55:59 -05:00
|
|
|
- dev
|
2022-10-05 18:42:58 -04:00
|
|
|
jobs:
|
2022-10-12 10:06:53 -04:00
|
|
|
test:
|
2022-10-09 16:31:51 -04:00
|
|
|
runs-on: ubuntu-latest
|
2022-10-05 18:42:58 -04:00
|
|
|
|
2022-10-09 16:31:51 -04:00
|
|
|
steps:
|
2024-05-06 22:54:25 -04:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: pnpm/action-setup@v3 # Install pnpm using packageManager key in package.json
|
2022-10-09 16:31:51 -04:00
|
|
|
|
2024-05-06 22:54:25 -04:00
|
|
|
- name: Use Node.js 20
|
|
|
|
uses: actions/setup-node@v4
|
2022-10-09 16:31:51 -04:00
|
|
|
with:
|
2024-05-06 22:54:25 -04:00
|
|
|
node-version: 20
|
2022-10-09 16:31:51 -04:00
|
|
|
cache: "pnpm"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
|
2022-11-25 17:51:36 -05:00
|
|
|
- name: Lint & Test if desktop version compiles
|
2022-10-09 16:58:08 -04:00
|
|
|
run: pnpm test
|
2022-11-25 17:51:36 -05:00
|
|
|
|
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
|