Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: CI

on:
push:
branches: ['**']
tags: ['**']
pull_request:
branches: ['**']

permissions:
contents: read

jobs:
build:
strategy:
matrix:
include:
- os: windows-latest
npm_arch: x64
- os: macos-latest
npm_arch: arm64
- os: ubuntu-latest
npm_arch: x64

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
with:
submodules: true

- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: '22.x'

- name: Install Dependencies
run: npm install
env:
npm_config_arch: ${{ matrix.npm_arch }}

- name: Run Tests
run: npm test
Loading