Update plugins #540
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- README.md | |
- LICENSE | |
- CODE_OF_CONDUCT.md | |
- CONTRIBUTING.md | |
- docs/** | |
- RemovedPlusPlugins/** | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 # Install pnpm using packageManager key in package.json | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile && pnpm install buttplug --workspace-root && pnpm install openai --workspace-root | |
- name: Lint & Test if desktop version compiles | |
run: pnpm test | |
- name: Test if web version compiles | |
run: pnpm buildWeb | |
- name: Test if plugin structure is valid | |
run: pnpm generatePluginJson |