Skip to content

Remove YAML quotations #41

Remove YAML quotations

Remove YAML quotations #41

Workflow file for this run

name: πŸ§ͺ Test
on:
push:
branches:
- main
- dev
paths:
- "**.ts"
- deno.lock
- .github/workflows/test.yml
pull_request:
paths:
- "**.ts"
- deno.lock
- .github/workflows/test.yml
jobs:
Test:
runs-on: Ubuntu-Latest
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: πŸ¦• Setup Deno
uses: denoland/setup-deno@f99b7edee36540f7183c45aad62fbb93d6d41d9d # v1.2.0
with:
deno-version: v1.x
- name: πŸ§ͺ Run Tests
run: deno task cov
- name: 🧹 Lint Check
run: deno lint
- name: πŸ“ Format Check
run: deno fmt --check
- name: πŸ” Type Check
run: deno check ./**/*.ts
- name: β˜‚οΈ Upload Coverage
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}