fix(run-updates): fix all bugs with the new updates #6
Workflow file for this run
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: Version output | |
run: deno --version | |
- name: Check the lint and the formatting tools | |
run: deno task check | |
env: | |
NO_COLOR: true |