Skip to content

docs: update changelog #9

docs: update changelog

docs: update changelog #9

Workflow file for this run

name: CI for main branch
on:
push:
branches:
- "main"
jobs:
# See https://stackoverflow.com/a/73624365/16109047
build:
runs-on: ubuntu-latest
if: github.repository == 'velut/zod-package-json' && github.ref == 'refs/heads/main'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v1
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run lint
- name: Test
run: bun run test:ci
- name: Build
run: bun run build
- name: Are the types wrong
run: bun run attw
- name: CodeCov
uses: codecov/codecov-action@v4.3.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: velut/zod-package-json