This repository has been archived by the owner on Feb 5, 2025. It is now read-only.
fix(plugin): owner and repo are now persisted between builds and vers… #260
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: Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
build-ubuntu: | |
name: Tests on Ubuntu | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Installation | |
run: pnpm install | |
- name: Run tests | |
run: pnpm run test | |
build-windows: | |
name: Tests on Windows | |
timeout-minutes: 30 | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Installation | |
run: pnpm install | |
- name: Run tests | |
run: pnpm run test |