Skip to content

Merge pull request #27 from oss-slu/24-jest-addnotescreen #21

Merge pull request #27 from oss-slu/24-jest-addnotescreen

Merge pull request #27 from oss-slu/24-jest-addnotescreen #21

Workflow file for this run

name: lrda_desktop CI
on:
push:
branches:
- main # replace with the name of your default branch if different
pull_request:
branches:
- main # replace with the name of your default branch if different
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.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 dependencies
run: yarn install # or 'npm install' if you're using npm
- name: Run tests
run: yarn test # or 'npm test' if you're using npm