Skip to content

feat: #164 TSX parsing support #26

feat: #164 TSX parsing support

feat: #164 TSX parsing support #26

Workflow file for this run

name: Continuous Integration (Experimental)
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Installing project dependencies
run: |
npm ci
- name: Lint
run: |
npm run lint
- name: Test
run: |
npm run test:jsx
- name: Build
run: |
npm run docs:build