Skip to content

ci: no need to test on version tag as well #7

ci: no need to test on version tag as well

ci: no need to test on version tag as well #7

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
registry-url: "https://registry.npmjs.org"
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: true
- name: Build library
run: pnpm build
- name: Build demo app
run: pnpm build-app
- name: Check code quality
run: pnpm check