Skip to content

feat: 自动构建

feat: 自动构建 #1

Workflow file for this run

name: build
on:
push:
branches:
- main
paths-ignore:
- "docs/**"
- "README.md"
pull_request:
paths-ignore:
- "docs/**"
- "README.md"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Test
run: deno test --allow-write --allow-net --allow-read