#118 - add Variables to SettingsModal #363
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |