aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-05-15 06:45:12 +0000
committerFuwn <[email protected]>2022-05-15 06:45:12 +0000
commit99e966b7cf6cfe55ab2cc05f51238ced1deb1621 (patch)
tree4d0e25c076784b901f25a7c84c895d80ecc1e4c8
parentci(laurali): add a test so ci won't freak out (diff)
parentci(github): setup deno workflow (diff)
downloadarchived-laurali-99e966b7cf6cfe55ab2cc05f51238ced1deb1621.tar.xz
archived-laurali-99e966b7cf6cfe55ab2cc05f51238ced1deb1621.zip
Merge branch 'main' of https://github.com/gemrest/laurali
-rw-r--r--.github/workflows/deno.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/deno.yml b/.github/workflows/deno.yml
new file mode 100644
index 0000000..022f50e
--- /dev/null
+++ b/.github/workflows/deno.yml
@@ -0,0 +1,33 @@
+name: ๐Ÿฆ• Deno
+
+on:
+ push:
+ branches: [main]
+ pull_request:
+ branches: [main]
+
+permissions:
+ contents: read
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: ๐Ÿ› Setup repo
+ uses: actions/checkout@v3
+
+ - name: ๐Ÿšฟ Setup Deno
+ # uses: denoland/setup-deno@v1
+ uses: denoland/setup-deno@004814556e37c54a2f6e31384c9e18e983317366
+ with:
+ deno-version: v1.x
+
+ - name: ๐Ÿ‘” Verify formatting
+ run: deno fmt --check
+
+ - name: ๐Ÿงผ Run linter
+ run: deno lint
+
+ - name: ๐Ÿงช Run tests
+ run: deno test -A --unstable