Skip to content

chore: use reflect-metadata from esm.sh #5

chore: use reflect-metadata from esm.sh

chore: use reflect-metadata from esm.sh #5

Workflow file for this run

name: Meson Tests
on:
workflow_dispatch:
push:
branches: ["*"]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install meson libglib2.0-dev
- name: Create Build Environment
run: meson setup ${{github.workspace}}/build
- name: Build
working-directory: ${{github.workspace}}/build
shell: bash
run: ninja
- name: Test
working-directory: ${{github.workspace}}/build
shell: bash
run: meson test --suite deno-gi --print-errorlogs