chore: add CI workflow to enable PR checks

This commit is contained in:
molecule-ai[bot] 2026-04-24 07:42:58 +00:00 committed by GitHub
parent 0726dd52cc
commit 18dac94dff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

26
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm test