fix(deps): update dependency zod to v3.23.8 #2649
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: Check | |
on: | |
#? We want to run this workflow on pull requests to the dev branch | |
#? Because we use the git flow workflow, the dev branch is the one that will receive the pull requests that may be invalid | |
pull_request: | |
branches: | |
- dev | |
workflow_dispatch: | |
jobs: | |
check: | |
name: Check | |
runs-on: ubuntu-latest | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
TURBO_REMOTE_ONLY: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
cache: "npm" | |
- name: Install dependencies | |
run: npm install | |
- name: Init build | |
run: npm run init:build | |
- name: Set example env | |
run: npm run init:env | |
- name: Lint check | |
run: npm run lint | |
- name: Format check | |
run: npm run prettier | |
- name: Unit & Integration tests | |
run: npm run test | |
- name: Check dependencies usage | |
run: npm run depcheck | |
- name: Banned Keywords | |
run: bash ./packages/scripts/banned-keywords.sh | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
TURBO_REMOTE_ONLY: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
cache: "npm" | |
- name: Install dependencies | |
run: npm install | |
- name: Init build | |
run: npm run init:build | |
- name: Set example env | |
run: npm run init:env | |
- name: Build | |
run: npm run build |