feat: add Elysia and ignore bun .lockb files #104
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
name: check | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Setup latest deno version | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
# Disabled because it attempts to check result json files which will not work! | |
# - name: Run deno fmt | |
# run: deno fmt --check | |
- name: Run deno lint | |
run: deno lint --unstable |