Skip to content

Commit

Permalink
add main-latest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
johnstonmatt committed May 10, 2024
1 parent 506e865 commit 708cb85
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Main Latest Checks
on:
push:
branches:
- main

jobs:
test_and_lint:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v3

- name: use deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.43.2

- name: Check formatting
run: deno fmt --check

- name: Lint
run: deno lint

- name: Build
run: deno task build

0 comments on commit 708cb85

Please sign in to comment.