Skip to content

Fixing so that option groups are toggled as part of course groups #11

Fixing so that option groups are toggled as part of course groups

Fixing so that option groups are toggled as part of course groups #11

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build-and-quality:
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
cache: npm
- name: Install dependencies
run: npm ci
- name: Run lint checks
run: npm run lint
- name: Build project
run: npm run build