mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
Create GitHub action for testing
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
name: Test
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: denolib/setup-deno@master
|
||||
- name: Cache dependencies
|
||||
run: deno cache mod.ts test/mod.test.ts
|
||||
- name: Run test script
|
||||
run: deno test -A
|
||||
Reference in New Issue
Block a user