Skip to content

Merge pull request #172 from oss-slu/t_test #452

Merge pull request #172 from oss-slu/t_test

Merge pull request #172 from oss-slu/t_test #452

Workflow file for this run

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