Bump zod from 3.21.4 to 3.22.4 #1283
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: CI | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
types: [opened, synchronize] | |
# With pre-rendering enabled, build loads modules, which triggers imports. | |
# These variables are just dummies that need to exist while build and check run. | |
env: | |
EO_API_KEY: ${{ secrets.EO_API_KEY }} | |
EO_LIST_ID: ${{ secrets.EO_LIST_ID }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
IMGIX_DOMAIN: ${{ secrets.IMGIX_DOMAIN }} | |
IMGIX_TOKEN: ${{ secrets.IMGIX_TOKEN }} | |
PUBLIC_CANONICAL_ORIGIN: ${{ secrets.PUBLIC_CANONICAL_ORIGIN }} | |
PUBLIC_FATHOM_SITE_ID: ${{ secrets.PUBLIC_FATHOM_SITE_ID }} | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
TURBO_REMOTE_ONLY: true | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint | |
run: npx turbo run lint | |
- name: Check | |
run: npx turbo run check | |
# - name: Install Playwright Chromium | |
# run: npx playwright install --with-deps chromium | |
# - name: Run Playwright tests | |
# run: npx turbo run test |