Skip to content

fix(general,components): correct else statement #24

fix(general,components): correct else statement

fix(general,components): correct else statement #24

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '^22.11.0'
- name: Install dependencies
run: |
npm ci
- name: Run tests with Jest
run: npm test
working-directory: packages/library
- name: Build the project
run: |
npm run build
working-directory: packages/library