Skip to content
This repository has been archived by the owner on Sep 8, 2023. It is now read-only.

Update config.json

Update config.json #28

Workflow file for this run

name: Test Lint
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3.4.0
- name: Setup Deno environment
uses: denoland/setup-deno@v1.1.1
with:
deno-version: v1.x
- name: Setup Cache
uses: actions/cache@v3.3.1
with:
path: |
~/.deno
~/.cache/deno
key: ${{ runner.os }}-deno-${{ hashFiles('**/_config.ts', '**/import_map.json') }}
- name: Running Tools
run: |
deno lint
deno fmt