diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5550a7e..001ce9a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,6 +29,10 @@ jobs: - macOS-latest steps: + - name: Set line ending for Windows + if: matrix.os == 'windows-latest' + run: git config --global core.autocrlf false + - name: Clone repository uses: actions/checkout@v4 @@ -37,6 +41,9 @@ jobs: with: deno-version: canary + - name: Install dependencies + run: deno install + - name: Format & Check run: deno run check