initial import
CI / test (18) (push) Waiting to run
CI / test (20) (push) Waiting to run
CI / test (22) (push) Waiting to run

This commit is contained in:
Tenere CI
2026-07-19 13:44:10 -07:00
commit 10f2d98ada
10 changed files with 619 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
name: CI
on:
push:
branches: [master]
tags: ['v*']
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Auth for Gitea npm registry
run: |
echo "@${{ github.repository_owner }}:registry=https://hub.kl1.tenere.ai/api/packages/${{ github.repository_owner }}/npm/" > .npmrc
echo "//hub.kl1.tenere.ai/api/packages/${{ github.repository_owner }}/npm/:_authToken=${{ secrets.PACKAGE_TOKEN }}" >> .npmrc
- run: npm install
- run: npm test
- run: npm run bench
if: matrix.node == 22