Skip to content

Commit cd9bc12

Browse files
committed
update test github action
1 parent 2ce9244 commit cd9bc12

File tree

2 files changed

+22
-20
lines changed

2 files changed

+22
-20
lines changed

.github/workflows/nodejs.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/run-tests.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Run tests
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Clone repository
14+
uses: actions/checkout@v3
15+
16+
- name: Install Deno
17+
uses: denoland/setup-deno@v1
18+
with:
19+
deno-version: v1.x
20+
21+
- name: Run Deno Test
22+
run: deno task test

0 commit comments

Comments
 (0)