Skip to content

Commit

Permalink
Create check_lib.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanThatOneKid committed Dec 8, 2021
1 parent 0163e07 commit 5fc87f4
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/check_lib.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Fart Lib Check

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
website_check:
runs-on: ubuntu-latest

strategy:
matrix:
deno_version: [canary, 1.16.4]
# See supported Deno releases at:
# https://github.com/denoland/deno/releases

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Deno ${{ matrix.deno_version }}
uses: denoland/setup-deno@v1
with:
node-version: ${{ matrix.deno_version }}

- name: Lint
run: deno lint

- name: Test and Check Coverage
run: deno test --coverage=cov_profile

1 comment on commit 5fc87f4

@deno-deploy
Copy link

@deno-deploy deno-deploy bot commented on 5fc87f4 Dec 8, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Failed to deploy:

failed to fetch 'https://raw.githubusercontent.com/EthanThatOneKid/fart/5fc87f42350c740749e79820a0308b2097493000/std/server/worker.ts': HTTP status client error (404 Not Found) for url (https://raw.githubusercontent.com/EthanThatOneKid/fart/5fc87f42350c740749e79820a0308b2097493000/std/server/worker.ts)

Please sign in to comment.