fix: working support for deno #1464
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: mdsf | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
verify: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
# disabled because of an issue with crlf | |
# - windows-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install mdsf | |
uses: hougesen/mdsf@main | |
- name: Run mdsf | |
run: mdsf verify --log-level warn . |