feat: update all typescript dependencies #303
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: 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 |