Skip to content

Instantly share code, notes, and snippets.

View niklasmtj's full-sized avatar

Niklas niklasmtj

View GitHub Profile
@niklasmtj
niklasmtj / ci.yaml
Created March 7, 2024 13:12
Github Action that can be used for running CI tasks in Deno. Run tests, check code for formatting errors and lint the code base. Fails on found irregularities in tests, format (fmt) and linting
name: "CI"
on:
- pull_request
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: "Checkout"