Fixes issue 162 #422
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: lrda_desktop CI | |
on: | |
push: | |
branches: | |
- main # replace with the name of your default branch if different | |
- openai_tags | |
- memoryleak | |
pull_request: | |
branches: | |
- main # replace with the name of your default branch if different | |
- openai_tags | |
- memoryleak | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] # Adjust according to your project's Node.js version | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install pnpm | |
run: npm install -g [email protected] | |
- name: Install dependencies | |
run: pnpm install # Replace 'npm install' with 'pnpm install' | |
- name: Run tests | |
run: pnpm test # or 'npm test' if you're using npm |