Skip to content

feat: #232 Signals based JSX compilation #454

feat: #232 Signals based JSX compilation

feat: #232 Signals based JSX compilation #454

Workflow file for this run

name: Continuous Integration
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22, 24]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: Installing project dependencies
run: |
npm ci
- name: Format
run: |
npm run format:check
- name: Lint
run: |
npm run lint
- name: Test
run: |
npm run test