Skip to content

Commit

Permalink
fix github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerim Hudson committed Apr 12, 2024
1 parent 1f70b8f commit c882a7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions .github/workflows/deno.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,15 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
deno: [0.32.0, 0.31.0, 0.30.0]
name: Test with Deno ${{ matrix.deno }}

steps:
- uses: actions/checkout@master

- name: Setup Deno
uses: denolib/setup-deno@master
with:
deno-version: ${{ matrix.deno }}

- name: Setup Node
uses: actions/setup-node@master
uses: denoland/setup-deno@v1
with:
node-version: 12
deno-version: vx.x.x

- name: Print deno version
run: deno --version
Expand All @@ -29,4 +20,4 @@ jobs:
run: deno fmt --check **/*.ts

- name: Run tests
run: deno test.ts
run: deno test ./mod_test.ts
File renamed without changes.

0 comments on commit c882a7c

Please sign in to comment.