Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
cleanup workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
williamhorning committed Jul 7, 2024
1 parent 9506eb1 commit f7518c2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
24 changes: 21 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,33 @@
name: Lint
name: Lint, format, and test
on:
push:
pull_request:
workflow_dispatch:
jobs:
lint:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.44.4
- run: deno fmt --check .
- run: deno lint
continue-on-error: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.44.4
- run: deno lint .
continue-on-error: true
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.44.4
- run: deno test
continue-on-error: true
14 changes: 0 additions & 14 deletions .github/workflows/test.yaml

This file was deleted.

0 comments on commit f7518c2

Please sign in to comment.