Skip to content

Commit

Permalink
Use deno in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
victrme committed Oct 24, 2024
1 parent 3e7719d commit 480b812
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Tests

on:
push:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20

- uses: denoland/setup-deno@v2
with:
deno-version: v2.x

- run: deno test --allow-net

0 comments on commit 480b812

Please sign in to comment.