30 lines
753 B
YAML
30 lines
753 B
YAML
name: test
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
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
|
|
|
|
- name: Lint & Test if desktop version compiles
|
|
run: pnpm test
|
|
|
|
- name: Lint & Test if web version compiles
|
|
run: pnpm testWeb
|