inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
name: deno
on:
push:
branches:
- main
jobs:
test:
name: Test on deno ${{ matrix.deno }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
deno: [ '1.x' ]
# os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Setup Deno
uses: denolib/setup-deno@master
with:
deno-version: ${{ matrix.deno }}
- run: deno --version
- run: deno test test/deno/*.ts --reload --no-check