Skip to content

#118 - add Variables to SettingsModal #360

#118 - add Variables to SettingsModal

#118 - add Variables to SettingsModal #360

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
types: [opened, synchronize, reopened, ready_for_review]
jobs:
build_and_test:
if: ${{ !github.event.pull_request.draft }}
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Prettier check
run: npm run prettier-check
- name: Run tests
run: npm test
- name: Build package
run: npm run package