Merge pull request #3 from Snider/feature/github-workflow
Remove Deno workflow
This commit is contained in:
commit
ef2bca38e9
1 changed files with 0 additions and 35 deletions
35
.github/workflows/deno.yml
vendored
35
.github/workflows/deno.yml
vendored
|
|
@ -1,35 +0,0 @@
|
|||
name: Deno Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ ubuntu-20.04, macos-11, windows-2019 ]
|
||||
steps:
|
||||
- name: Setup repo
|
||||
uses: actions/checkout@v2
|
||||
- name: Setup Deno
|
||||
uses: denoland/setup-deno@v1
|
||||
with:
|
||||
deno-version: v1.x
|
||||
# Check if the code is formatted according to Deno's default
|
||||
# formatting conventions.
|
||||
- if: matrix.os == 'ubuntu-20.04'
|
||||
run: deno fmt --check
|
||||
|
||||
# Scan the code for syntax errors and style issues. If
|
||||
# you want to use a custom linter configuration you can add a configuration file with --config <myconfig>
|
||||
- run: deno lint
|
||||
|
||||
# This generates a report from the collected coverage in `deno test --coverage`. It is
|
||||
# stored as a .lcov file which integrates well with services such as Codecov, Coveralls and Travis CI.
|
||||
- name: Generate coverage report
|
||||
if: matrix.os == 'ubuntu-20.04'
|
||||
run: deno coverage --lcov cov > cov.lcov
|
||||
Loading…
Add table
Reference in a new issue