Skip to content

Commit

Permalink
docs(ci): fix test pipeline version matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar committed Sep 29, 2024
1 parent 979cf6a commit dfb1762
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
matrix:
runtime:
- name: deno
version: v1.x
deno-version: v1.x
- name: deno
version: rc
deno-version: rc
- name: node
# - name: bun
os: [macOS-latest, windows-latest, ubuntu-latest]
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.runtime.version }}
deno-version: ${{ matrix.runtime.deno-version }}
# deno-version-file: ".deno-version"

- name: Create package.json
Expand All @@ -54,12 +54,12 @@ jobs:
run_install: true

- name: Run tests
if: matrix.runtime.name == 'deno' && matrix.runtime.version == 'v1.x'
if: matrix.runtime.name == 'deno' && matrix.runtime.deno-version == 'v1.x'
shell: bash
run: deno task coverage:deno-v1

- name: Run tests
if: matrix.runtime.name == 'deno' && matrix.runtime.version == 'rc'
if: matrix.runtime.name == 'deno' && matrix.runtime.deno-version == 'rc'
shell: bash
run: deno task coverage:deno-v2

Expand Down

0 comments on commit dfb1762

Please sign in to comment.