Skip to content

fix deno.json

fix deno.json #9

Workflow file for this run

name: Meson Tests
on:
workflow_dispatch:
push:
branches: [main]
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: Stylecheck
run: deno fmt --check
- name: Lint
run: deno lint
- name: Test
working-directory: ${{github.workspace}}/build
shell: bash
run: meson test --suite deno-gi --print-errorlogs