mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 01:10:07 +00:00
* test: fix "Token not provided" error
* idk wtf
* Revert "idk wtf"
This reverts commit 26063aa127.
* https://open.spotify.com/track/3ZWc3Bm8eUMRRJhSWKHHeV 🔥🔥
16 lines
362 B
YAML
16 lines
362 B
YAML
name: Test
|
|
on:
|
|
pull_request:
|
|
types: labeled
|
|
jobs:
|
|
test:
|
|
if: github.event.label.name == 'run-tests'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: denolib/setup-deno@v2
|
|
- name: Run test script
|
|
run: deno test --allow-net --allow-env tests/
|
|
env:
|
|
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
|