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

πŸ”– change version to 0.1.0-alpha.4 . #15

πŸ”– change version to 0.1.0-alpha.4 .

πŸ”– change version to 0.1.0-alpha.4 . #15

Workflow file for this run

name: action
on:
- push
- pull_request
- workflow_dispatch
jobs:
action:
strategy:
matrix:
runs-on:
- windows-latest
- macos-latest
- ubuntu-latest
runs-on: ${{ matrix.runs-on }}
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: check styles
run: deno fmt --check
- name: check types
run: deno check $(deno eval 'console.log(...(await import("https://esm.sh/glob")).sync("**/*.ts"))')
- name: test codes
run: deno test --allow-read --allow-write