chore(deps): update dependency https://deno.land/x/zod to v3.23.8 - autoclosed #70
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checked Code | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: [main] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Deno | |
uses: denolib/setup-deno@v2 | |
with: | |
deno-version: v1.x | |
- name: Lint | |
run: deno lint | |
- name: Format Check | |
run: deno fmt --check | |
- name: Test | |
run: deno task test | |
- name: Create code coverage | |
run: deno task coverage:output | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./coverage.lcov |