-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update README.md and add checks workflow
- Loading branch information
1 parent
b4f3784
commit 505d3ce
Showing
3 changed files
with
83 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
open_collective: denosaurs | ||
github: denosaurs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: check | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup latest deno version | ||
uses: denoland/setup-deno@main | ||
with: | ||
deno-version: v1.x | ||
|
||
- name: Run deno lint | ||
run: deno lint --unstable | ||
|
||
fmt: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup latest deno version | ||
uses: denoland/setup-deno@main | ||
with: | ||
deno-version: v1.x | ||
|
||
- name: Run deno fmt | ||
run: deno fmt --check | ||
|
||
# test: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout sources | ||
# uses: actions/checkout@v2 | ||
# | ||
# - name: Setup latest deno version | ||
# uses: denoland/setup-deno@main | ||
# with: | ||
# deno-version: v1.x | ||
# | ||
# - name: Run deno test | ||
# run: deno test --allow-all --unstable | ||
|
||
# doc: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout sources | ||
# uses: actions/checkout@v2 | ||
# | ||
# - name: Setup latest deno version | ||
# uses: denoland/setup-deno@main | ||
# with: | ||
# deno-version: v1.x | ||
# | ||
# - name: Run deno test --doc | ||
# run: deno test --allow-all --unstable --doc --import-map import_map.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters