This repository has been archived by the owner on Jun 27, 2024. It is now read-only.
docs(readme): remove benchmark section (#116) #33
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 | |
- pull_request | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Run deno fmt | |
run: deno fmt --check | |
- name: Run deno lint | |
run: deno lint | |
- name: Run deno test | |
run: deno task test --fail-fast | |
- name: Run deno test | |
run: deno task test --fail-fast | |
- name: Check license headers | |
run: | | |
deno run -A --no-check https://deno.land/x/anzu@1.0.0/src/cli.ts \ | |
-i ./ "/.+\.ts/" \ | |
-l "// Copyright 2023 Samuel Kopp. All rights reserved. Apache-2.0 license." \ | |
-p |