Skip to content

WIP: release(v0.2.0): Road to the missing features for make a development experience like npm #308

WIP: release(v0.2.0): Road to the missing features for make a development experience like npm

WIP: release(v0.2.0): Road to the missing features for make a development experience like npm #308

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Deno
uses: denoland/setup-deno@v1
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: clippy,rustfmt
toolchain: stable
- name: Version output
run: |
rustc --version
cargo --version
deno --version
- name: Check the lint and the formatting tools
run: deno task check
env:
NO_COLOR: true