Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Revert ":+1: Add utils" #48

Revert ":+1: Add utils"

Revert ":+1: Add utils" #48

Workflow file for this run

name: test
on:
schedule:
- cron: "0 7 * * 0"
push:
pull_request:
jobs:
check:
strategy:
matrix:
runner:
- ubuntu-latest
version:
- "1.x"
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: "${{ matrix.version }}"
- name: Lint check
run: deno lint
- name: Format check
run: deno fmt --check
- name: Type check
run: deno task check
- name: Test
run: deno task test