This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
Fix screenshare and some other things not working #12
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: | |
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.18.2 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.18.2 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Run tests | |
run: pnpm test | |
- name: Test if it compiles | |
run: | | |
pnpm build | |
pnpm build --dev |