Skip to content

Bugfix/17 fix joining to group #51

Bugfix/17 fix joining to group

Bugfix/17 fix joining to group #51

Workflow file for this run

name: CI
on:
push:
branches:
- feature/*
pull_request:
branches:
- master
- feature/*
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run tests
run: npm test
- name: Build project
run: npm run build