Skip to content

build(deps): bump zod from 3.21.4 to 3.22.4 #76

build(deps): bump zod from 3.21.4 to 3.22.4

build(deps): bump zod from 3.21.4 to 3.22.4 #76

Workflow file for this run

name: Publish Codecov
on:
workflow_dispatch:
pull_request:
branches:
- main
paths:
- 'packages/waystone-*/**'
- '.github/workflows/coverage.yml'
- '!**/*.md'
push:
branches:
- main
paths:
- 'packages/waystone-*/**'
- '.github/workflows/coverage.yml'
- '!**/*.md'
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
coverage:
name: Upload coverage to Codecov
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Checkout Repo
id: checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup PNPM
uses: pnpm/action-setup@v2
- name: Setup Node.js 16.x
id: setup
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Run tests and collect coverage
run: pnpm test:release
- name: Upload results to codecov
uses: codecov/codecov-action@v3