2022-10-12 14:06:53 +00:00
|
|
|
name: test
|
2022-10-05 22:42:58 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
jobs:
|
2022-10-12 14:06:53 +00:00
|
|
|
test:
|
2022-10-09 20:31:51 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-10-05 22:42:58 +00:00
|
|
|
|
2022-10-09 20:31:51 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
|
|
|
|
|
|
|
|
- name: Use Node.js 18
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 18
|
|
|
|
cache: "pnpm"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
|
2022-11-25 22:51:36 +00:00
|
|
|
- name: Lint & Test if desktop version compiles
|
2022-10-09 20:58:08 +00:00
|
|
|
run: pnpm test
|
2022-11-25 22:51:36 +00:00
|
|
|
|
|
|
|
- name: Lint & Test if web version compiles
|
|
|
|
run: pnpm testWeb
|