fix(deps): update dependency zod-rosetty to v1.0.263 #6103
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] | |
jobs: | |
build: | |
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: ["18.x"] | |
os: [ubuntu-latest] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Use Node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install PNPM | |
uses: pnpm/action-setup@v4.0.0 | |
with: | |
version: 7.13.4 | |
- name: Install deps and build (with cache) | |
run: pnpm install --no-frozen-lockfile | |
- name: Lint | |
run: pnpm lint | |
- name: Build | |
run: NEXT_PUBLIC_API_URL="http://localhost:3000" NEXT_PUBLIC_GQL_URL="http://localhost:3000/graphql" pnpm build |