Skip to content

lint: switch to jsonc #50

lint: switch to jsonc

lint: switch to jsonc #50

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: Test
run: |
npm run test:jsx
- name: Build
run: |
npm run docs:build