diff options
| author | Fuwn <[email protected]> | 2022-05-15 06:37:58 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-05-15 06:37:58 +0000 |
| commit | f6f4cd6a955f47b07cdfbe53e7b4c9b28c90cdcd (patch) | |
| tree | 9a953675baf878e08c1013356afeda9f7bd7e16e /.github/workflows | |
| parent | docs(server): Server constructor (diff) | |
| download | laurali-f6f4cd6a955f47b07cdfbe53e7b4c9b28c90cdcd.tar.xz laurali-f6f4cd6a955f47b07cdfbe53e7b4c9b28c90cdcd.zip | |
ci(github): setup deno workflow
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/deno.yml | 33 |
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 |